public enum EnumRangeShifterType extends java.lang.Enum<EnumRangeShifterType>
| Enum Constant and Description |
|---|
ANALOG
The Device is variable thickness and is composed of opposing
sliding wedges, water column or similar mechanism.
|
BINARY
The Device is composed of different thickness materials
that can be moved in or out of the beam in various stepped combinations.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumRangeShifterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumRangeShifterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumRangeShifterType ANALOG
public static final EnumRangeShifterType BINARY
public static EnumRangeShifterType[] values()
for (EnumRangeShifterType c : EnumRangeShifterType.values()) System.out.println(c);
public static EnumRangeShifterType 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()