public static enum Constants.TurnDirection extends Enum<Constants.TurnDirection>
| Enum Constant and Description |
|---|
LEFT |
RIGHT |
SHARP_LEFT |
SHARP_RIGHT |
SLIGHT_LEFT |
SLIGHT_RIGHT |
STRAIGHT |
U_TURN |
| Modifier and Type | Method and Description |
|---|---|
static Constants.TurnDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.TurnDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.TurnDirection STRAIGHT
public static final Constants.TurnDirection SLIGHT_LEFT
public static final Constants.TurnDirection SLIGHT_RIGHT
public static final Constants.TurnDirection LEFT
public static final Constants.TurnDirection RIGHT
public static final Constants.TurnDirection SHARP_LEFT
public static final Constants.TurnDirection SHARP_RIGHT
public static final Constants.TurnDirection U_TURN
public static Constants.TurnDirection[] values()
for (Constants.TurnDirection c : Constants.TurnDirection.values()) System.out.println(c);
public static Constants.TurnDirection 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 nullCopyright © 2018. All rights reserved.