Enum DirectionEnum

  • All Implemented Interfaces:
    Serializable, Comparable<DirectionEnum>

    public enum DirectionEnum
    extends Enum<DirectionEnum>

    Java class for DirectionEnum.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="DirectionEnum">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="anticlockwise"/>
         <enumeration value="clockwise"/>
         <enumeration value="northBound"/>
         <enumeration value="northEastBound"/>
         <enumeration value="eastBound"/>
         <enumeration value="southEastBound"/>
         <enumeration value="southBound"/>
         <enumeration value="southWestBound"/>
         <enumeration value="westBound"/>
         <enumeration value="northWestBound"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • ANTICLOCKWISE

        public static final DirectionEnum ANTICLOCKWISE
        In the anticlockwise direction of travel on a ring road.
      • CLOCKWISE

        public static final DirectionEnum CLOCKWISE
        In the clockwise direction of travel on a ring road.
      • NORTH_BOUND

        public static final DirectionEnum NORTH_BOUND
        In the north bound direction of travel.
      • NORTH_EAST_BOUND

        public static final DirectionEnum NORTH_EAST_BOUND
        In the north east bound direction of travel.
      • EAST_BOUND

        public static final DirectionEnum EAST_BOUND
        In the east bound direction of travel.
      • SOUTH_EAST_BOUND

        public static final DirectionEnum SOUTH_EAST_BOUND
        In the south east bound direction of travel.
      • SOUTH_BOUND

        public static final DirectionEnum SOUTH_BOUND
        In the south bound direction of travel.
      • SOUTH_WEST_BOUND

        public static final DirectionEnum SOUTH_WEST_BOUND
        In the south west bound direction of travel.
      • WEST_BOUND

        public static final DirectionEnum WEST_BOUND
        In the west bound direction of travel.
      • NORTH_WEST_BOUND

        public static final DirectionEnum NORTH_WEST_BOUND
        In the north west bound direction of travel.
    • Method Detail

      • values

        public static DirectionEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DirectionEnum c : DirectionEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DirectionEnum valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()