public enum TiltStatus extends java.lang.Enum<TiltStatus>
| Modifier and Type | Method and Description |
|---|---|
static TiltStatus |
fromInt(int value) |
int |
intValue() |
static TiltStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TiltStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiltStatus STOPPED
public static final TiltStatus LIMIT
public static final TiltStatus MOVING
public static TiltStatus[] values()
for (TiltStatus c : TiltStatus.values()) System.out.println(c);
public static TiltStatus 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 int intValue()
public static TiltStatus fromInt(int value)