| Modifier and Type | Method and Description | 
|---|---|
| int | getDx() | 
| int | getDy() | 
| Direction | left() | 
| Direction | mirror(Direction axis)Mirror this direction in an axis indicated by a separated direction. | 
| Direction | opposite() | 
| static Direction | parse(java.lang.String str) | 
| Direction | right() | 
| Direction | rotate(int steps) | 
| java.lang.String | toString() | 
| static Direction | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Direction[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Direction NORTH
public static final Direction EAST
public static final Direction SOUTH
public static final Direction WEST
public static Direction[] values()
for (Direction c : Direction.values()) System.out.println(c);
public static Direction 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Direction>public Direction rotate(int steps)
public Direction mirror(Direction axis)
axis - The direction of the axis in which to mirror this direction.public Direction opposite()
public Direction left()
public Direction right()
public int getDx()
public int getDy()
public static Direction parse(java.lang.String str)