|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Constants.TurnDirection>
aim4.config.Constants.TurnDirection
public static enum Constants.TurnDirection
A direction to turn at an intersection.
Enum Constant Summary | |
---|---|
LEFT
Left turn. |
|
RIGHT
Right turn. |
|
STRAIGHT
Go straight (i.e. |
|
U_TURN
180 degree turn back to the same road (currently not allowed). |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Constants.TurnDirection LEFT
public static final Constants.TurnDirection RIGHT
public static final Constants.TurnDirection STRAIGHT
public static final Constants.TurnDirection U_TURN
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |