Enum LinearScale.IndicatorField
- java.lang.Object
- 
- java.lang.Enum<LinearScale.IndicatorField>
- 
- com.inductiveautomation.factorypmi.application.components.LinearScale.IndicatorField
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<LinearScale.IndicatorField>
 - Enclosing class:
- LinearScale
 
 public static enum LinearScale.IndicatorField extends java.lang.Enum<LinearScale.IndicatorField> Represents the columns in the indicator dataset
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ColorExtentLabelLabelAngleLabelColorLengthStyleValueWidth
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetDefaultValue()java.lang.Class<?>getType()static LinearScale.IndicatorFieldvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LinearScale.IndicatorField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Stylepublic static final LinearScale.IndicatorField Style 
 - 
Valuepublic static final LinearScale.IndicatorField Value 
 - 
Extentpublic static final LinearScale.IndicatorField Extent 
 - 
Lengthpublic static final LinearScale.IndicatorField Length 
 - 
Widthpublic static final LinearScale.IndicatorField Width 
 - 
Colorpublic static final LinearScale.IndicatorField Color 
 - 
Labelpublic static final LinearScale.IndicatorField Label 
 - 
LabelColorpublic static final LinearScale.IndicatorField LabelColor 
 - 
LabelAnglepublic static final LinearScale.IndicatorField LabelAngle 
 
- 
 - 
Method Detail- 
valuespublic static LinearScale.IndicatorField[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LinearScale.IndicatorField c : LinearScale.IndicatorField.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LinearScale.IndicatorField valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getTypepublic java.lang.Class<?> getType() 
 - 
getDefaultValuepublic java.lang.Object getDefaultValue() 
 
- 
 
-