public enum EnumBeamStopperPosition extends java.lang.Enum<EnumBeamStopperPosition>
| Enum Constant and Description |
|---|
BEAM_STOPPER_EXTENDED
The BEA m_ stoppe r_ extended.
|
BEAM_STOPPER_RETRACTED
The BEAM_ STOPPER_ RETRACTED.
|
POSITION_UNKNOWN
The POSITION_ UNKNOWN.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumBeamStopperPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumBeamStopperPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumBeamStopperPosition BEAM_STOPPER_EXTENDED
public static final EnumBeamStopperPosition BEAM_STOPPER_RETRACTED
public static final EnumBeamStopperPosition POSITION_UNKNOWN
public static EnumBeamStopperPosition[] values()
for (EnumBeamStopperPosition c : EnumBeamStopperPosition.values()) System.out.println(c);
public static EnumBeamStopperPosition valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()