/** The four cardinal directions */
public enum Direction {
    UP, DOWN, LEFT, RIGHT;
}
