public static enum Indication.Orientation extends Enum<Indication.Orientation>
Enum Constant and Description |
---|
BACKWARD |
INVALID_ORIENTATION |
LEFT |
RIGHT |
SHARP_LEFT |
SHARP_RIGHT |
STRAIGHT |
VEER_LEFT |
VEER_RIGHT |
Modifier and Type | Method and Description |
---|---|
static Indication.Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Indication.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indication.Orientation INVALID_ORIENTATION
public static final Indication.Orientation STRAIGHT
public static final Indication.Orientation VEER_RIGHT
public static final Indication.Orientation RIGHT
public static final Indication.Orientation SHARP_RIGHT
public static final Indication.Orientation VEER_LEFT
public static final Indication.Orientation LEFT
public static final Indication.Orientation SHARP_LEFT
public static final Indication.Orientation BACKWARD
public static Indication.Orientation[] values()
for (Indication.Orientation c : Indication.Orientation.values()) System.out.println(c);
public static Indication.Orientation 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