Package jmri.jmrit.symbolicprog
Enum AbstractValue.ValueState
- All Implemented Interfaces:
Serializable,Comparable<AbstractValue.ValueState>,java.lang.constant.Constable
- Enclosing class:
- AbstractValue
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDefines state where value was read from a config file, and is the not the same as the decoder.Defines state where value has been edited, no longer same as in decoder or file.Defines state where value was read from a config file, but might not be the same as the decoder.Defines state where value has been read from (hence same as) decoder, but perhaps not same as in file.Defines state where value was read from a config file, and is the same as the decoder.Defines state where value has been written to (hence same as) decoder, but perhaps not same as in file.Defines state when nothing is known about the real value. -
Method Summary
Modifier and TypeMethodDescriptiongetColor()Gets the color associated with this state value.getName()Gets the name associated with this state value.static AbstractValue.ValueStateReturns the enum constant of this type with the specified name.static AbstractValue.ValueState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Defines state when nothing is known about the real value. -
EDITED
Defines state where value has been edited, no longer same as in decoder or file. -
READ
Defines state where value has been read from (hence same as) decoder, but perhaps not same as in file. -
STORED
Defines state where value has been written to (hence same as) decoder, but perhaps not same as in file. -
FROMFILE
Defines state where value was read from a config file, but might not be the same as the decoder. -
SAME
Defines state where value was read from a config file, and is the same as the decoder. -
DIFFERENT
Defines state where value was read from a config file, and is the not the same as the decoder.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getColor
Gets the color associated with this state value.- Returns:
- the color assigned to this state value or null if to use default for the component
-
getName
Gets the name associated with this state value.- Returns:
- the name assigned to this state value
-