Package jmri.jmrix.loconet
Enum LnCommandStationType.MultiMeterSupport
- java.lang.Object
-
- java.lang.Enum<LnCommandStationType.MultiMeterSupport>
-
- jmri.jmrix.loconet.LnCommandStationType.MultiMeterSupport
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LnCommandStationType.MultiMeterSupport>
- Enclosing class:
- LnCommandStationType
protected static enum LnCommandStationType.MultiMeterSupport extends java.lang.Enum<LnCommandStationType.MultiMeterSupport>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_MULTIMETER_SUPPORT
SUPPORTS_MULTIMETER_FUNCTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LnCommandStationType.MultiMeterSupport
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LnCommandStationType.MultiMeterSupport[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_MULTIMETER_SUPPORT
public static final LnCommandStationType.MultiMeterSupport NO_MULTIMETER_SUPPORT
-
SUPPORTS_MULTIMETER_FUNCTION
public static final LnCommandStationType.MultiMeterSupport SUPPORTS_MULTIMETER_FUNCTION
-
-
Method Detail
-
values
public static LnCommandStationType.MultiMeterSupport[] 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 (LnCommandStationType.MultiMeterSupport c : LnCommandStationType.MultiMeterSupport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LnCommandStationType.MultiMeterSupport 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
-
-