public static enum Main.DemoState extends Enum<Main.DemoState>
Enum Constant and Description |
---|
Avoidance |
Default |
ForkliftTest |
GripTest |
LocalizationTest |
NavigationTest |
ObjectDiffTest |
ReturnTest |
RGBVectorTest |
SearchTest |
SquareTest |
StraightLineTest |
TrackTest |
Modifier and Type | Method and Description |
---|---|
static Main.DemoState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Main.DemoState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Main.DemoState Default
public static final Main.DemoState StraightLineTest
public static final Main.DemoState SquareTest
public static final Main.DemoState LocalizationTest
public static final Main.DemoState NavigationTest
public static final Main.DemoState SearchTest
public static final Main.DemoState ObjectDiffTest
public static final Main.DemoState RGBVectorTest
public static final Main.DemoState TrackTest
public static final Main.DemoState ForkliftTest
public static final Main.DemoState Avoidance
public static final Main.DemoState GripTest
public static final Main.DemoState ReturnTest
public static Main.DemoState[] values()
for (Main.DemoState c : Main.DemoState.values()) System.out.println(c);
public static Main.DemoState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null