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