Class IntegerParameterBuilder
-
- All Implemented Interfaces:
public final class IntegerParameterBuilder
-
-
Constructor Summary
Constructors Constructor Description IntegerParameterBuilder(String key)
-
Method Summary
Modifier and Type Method Description final StringgetLabel()Label that is displayed in the VMware Aria Operations UI. final UnitsetLabel(String label)Label that is displayed in the VMware Aria Operations UI. final StringgetDescription()More in-depth explanation of the parameter. final UnitsetDescription(String description)More in-depth explanation of the parameter. final IntegergetDefault()The default value of the parameter. final UnitsetDefault(Integer default)The default value of the parameter. final BooleangetRequired()True if user is required to provide this parameter. final UnitsetRequired(Boolean required)True if user is required to provide this parameter. final BooleangetAdvanced()True if the parameter should be collapsed by default. final UnitsetAdvanced(Boolean advanced)True if the parameter should be collapsed by default. final StringgetKey()Used to identify the parameter. final IntParameterbuild(Integer dashboardOrder)-
-
Constructor Detail
-
IntegerParameterBuilder
IntegerParameterBuilder(String key)
-
-
Method Detail
-
getLabel
final String getLabel()
Label that is displayed in the VMware Aria Operations UI. Defaults to the key.
-
setLabel
final Unit setLabel(String label)
Label that is displayed in the VMware Aria Operations UI. Defaults to the key.
-
getDescription
final String getDescription()
More in-depth explanation of the parameter. Displayed as a tooltip in the VMware Aria Operations UI.
-
setDescription
final Unit setDescription(String description)
More in-depth explanation of the parameter. Displayed as a tooltip in the VMware Aria Operations UI.
-
getDefault
final Integer getDefault()
The default value of the parameter.
-
setDefault
final Unit setDefault(Integer default)
The default value of the parameter.
-
getRequired
final Boolean getRequired()
True if user is required to provide this parameter. Defaults to True.
-
setRequired
final Unit setRequired(Boolean required)
True if user is required to provide this parameter. Defaults to True.
-
getAdvanced
final Boolean getAdvanced()
True if the parameter should be collapsed by default. Defaults to False.
-
setAdvanced
final Unit setAdvanced(Boolean advanced)
True if the parameter should be collapsed by default. Defaults to False.
-
build
final IntParameter build(Integer dashboardOrder)
-
-
-
-