public static enum LimitSystem.SystemType extends java.lang.Enum<LimitSystem.SystemType>
| Enum Constant and Description |
|---|
DUAL
System limited by back and front limits.
|
FORWARD |
REVERSE |
SINGLE_FORWARD
System limited at a front limit.
|
SINGLE_REVERSE
System limited at a back limit.
|
| Modifier and Type | Method and Description |
|---|---|
static LimitSystem.SystemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LimitSystem.SystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LimitSystem.SystemType SINGLE_FORWARD
public static final LimitSystem.SystemType FORWARD
public static final LimitSystem.SystemType SINGLE_REVERSE
public static final LimitSystem.SystemType REVERSE
public static final LimitSystem.SystemType DUAL
public static LimitSystem.SystemType[] values()
for (LimitSystem.SystemType c : LimitSystem.SystemType.values()) System.out.println(c);
public static LimitSystem.SystemType 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 null