public static enum MotionTest.State extends java.lang.Enum<MotionTest.State>
Enum Constant and Description |
---|
GO_HOME |
RETURN_HOME |
START_TEST |
TEST_COMPLED |
TEST_RUN |
Modifier and Type | Method and Description |
---|---|
static MotionTest.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MotionTest.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MotionTest.State START_TEST
public static final MotionTest.State GO_HOME
public static final MotionTest.State TEST_RUN
public static final MotionTest.State RETURN_HOME
public static final MotionTest.State TEST_COMPLED
public static MotionTest.State[] values()
for (MotionTest.State c : MotionTest.State.values()) System.out.println(c);
public static MotionTest.State 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