Package jmri.jmrit.symbolicprog
Enum AbstractValue.ValueState
- java.lang.Object
-
- java.lang.Enum<AbstractValue.ValueState>
-
- jmri.jmrit.symbolicprog.AbstractValue.ValueState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AbstractValue.ValueState>
- Enclosing class:
- AbstractValue
public static enum AbstractValue.ValueState extends java.lang.Enum<AbstractValue.ValueState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIFFERENT
Defines state where value was read from a config file, and is the not the same as the decoder.EDITED
Defines state where value has been edited, no longer same as in decoder or file.FROMFILE
Defines state where value was read from a config file, but might not be the same as the decoder.READ
Defines state where value has been read from (hence same as) decoder, but perhaps not same as in file.SAME
Defines state where value was read from a config file, and is the same as the decoder.STORED
Defines state where value has been written to (hence same as) decoder, but perhaps not same as in file.UNKNOWN
Defines state when nothing is known about the real value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.Color
getColor()
Gets the color associated with this state value.java.lang.String
getName()
Gets the name associated with this state value.static AbstractValue.ValueState
valueOf(java.lang.String name)
Returns 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 Detail
-
UNKNOWN
public static final AbstractValue.ValueState UNKNOWN
Defines state when nothing is known about the real value.
-
EDITED
public static final AbstractValue.ValueState EDITED
Defines state where value has been edited, no longer same as in decoder or file.
-
READ
public static final AbstractValue.ValueState READ
Defines state where value has been read from (hence same as) decoder, but perhaps not same as in file.
-
STORED
public static final AbstractValue.ValueState STORED
Defines state where value has been written to (hence same as) decoder, but perhaps not same as in file.
-
FROMFILE
public static final AbstractValue.ValueState FROMFILE
Defines state where value was read from a config file, but might not be the same as the decoder.
-
SAME
public static final AbstractValue.ValueState SAME
Defines state where value was read from a config file, and is the same as the decoder.
-
DIFFERENT
public static final AbstractValue.ValueState DIFFERENT
Defines state where value was read from a config file, and is the not the same as the decoder.
-
-
Method Detail
-
values
public static AbstractValue.ValueState[] 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 (AbstractValue.ValueState c : AbstractValue.ValueState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractValue.ValueState 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 namejava.lang.NullPointerException
- if the argument is null
-
getColor
public java.awt.Color 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
public java.lang.String getName()
Gets the name associated with this state value.- Returns:
- the name assigned to this state value
-
-