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