package bridge;

/**
 * An enumerated type whose values indicate sides of the bridge in the bridge problem.
 * Refer to these values using "<b>Position.EAST</b>" and "<b>Position.WEST</b>"
 */
public enum Position { 
    /**
     * The east side of the bridge
     */
    EAST, 

    /**
     * The west side of the bridge
     */
    WEST 
}