Package jmri.jmrix.ipocs.protocol.enums
Enum RqLevelCrossingState
- java.lang.Object
-
- java.lang.Enum<RqLevelCrossingState>
-
- jmri.jmrix.ipocs.protocol.enums.RqLevelCrossingState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RqLevelCrossingState>
public enum RqLevelCrossingState extends java.lang.Enum<RqLevelCrossingState>
- Since:
- 4.21.2
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Closed
Closing
Open
Opening
OutOfControl
PreparedForActivation
-
Field Summary
Fields Modifier and Type Field Description byte
value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RqLevelCrossingState
valueOf(byte value)
Returns the enum constant of this type with the specified name.static RqLevelCrossingState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RqLevelCrossingState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Open
public static final RqLevelCrossingState Open
-
PreparedForActivation
public static final RqLevelCrossingState PreparedForActivation
-
Closing
public static final RqLevelCrossingState Closing
-
Closed
public static final RqLevelCrossingState Closed
-
Opening
public static final RqLevelCrossingState Opening
-
OutOfControl
public static final RqLevelCrossingState OutOfControl
-
-
Field Detail
-
value
public final byte value
-
-
Method Detail
-
values
public static RqLevelCrossingState[] 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 (RqLevelCrossingState c : RqLevelCrossingState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RqLevelCrossingState 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
-
valueOf
public static RqLevelCrossingState valueOf(byte value)
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:
value
- 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
-
-