Enum Class CompassPointEnumeration

Object
Enum<CompassPointEnumeration>
CompassPointEnumeration
All Implemented Interfaces:
Serializable, Comparable<CompassPointEnumeration>, Constable, Enumerator

public enum CompassPointEnumeration extends Enum<CompassPointEnumeration> implements Enumerator
A representation of the literals of the enumeration 'Compass Point Enumeration', and utility methods for working with them.
See Also:
  • Enum Constant Details

  • Field Details

    • N_VALUE

      public static final int N_VALUE
      The 'N' literal value.

      If the meaning of 'N' literal object isn't clear, there really should be more of a description here...

      See Also:
    • NNE_VALUE

      public static final int NNE_VALUE
      The 'NNE' literal value.

      If the meaning of 'NNE' literal object isn't clear, there really should be more of a description here...

      See Also:
    • NE_VALUE

      public static final int NE_VALUE
      The 'NE' literal value.

      If the meaning of 'NE' literal object isn't clear, there really should be more of a description here...

      See Also:
    • ENE_VALUE

      public static final int ENE_VALUE
      The 'ENE' literal value.

      If the meaning of 'ENE' literal object isn't clear, there really should be more of a description here...

      See Also:
    • E_VALUE

      public static final int E_VALUE
      The 'E' literal value.

      If the meaning of 'E' literal object isn't clear, there really should be more of a description here...

      See Also:
    • ESE_VALUE

      public static final int ESE_VALUE
      The 'ESE' literal value.

      If the meaning of 'ESE' literal object isn't clear, there really should be more of a description here...

      See Also:
    • SE_VALUE

      public static final int SE_VALUE
      The 'SE' literal value.

      If the meaning of 'SE' literal object isn't clear, there really should be more of a description here...

      See Also:
    • SSE_VALUE

      public static final int SSE_VALUE
      The 'SSE' literal value.

      If the meaning of 'SSE' literal object isn't clear, there really should be more of a description here...

      See Also:
    • S_VALUE

      public static final int S_VALUE
      The 'S' literal value.

      If the meaning of 'S' literal object isn't clear, there really should be more of a description here...

      See Also:
    • SSW_VALUE

      public static final int SSW_VALUE
      The 'SSW' literal value.

      If the meaning of 'SSW' literal object isn't clear, there really should be more of a description here...

      See Also:
    • SW_VALUE

      public static final int SW_VALUE
      The 'SW' literal value.

      If the meaning of 'SW' literal object isn't clear, there really should be more of a description here...

      See Also:
    • WSW_VALUE

      public static final int WSW_VALUE
      The 'WSW' literal value.

      If the meaning of 'WSW' literal object isn't clear, there really should be more of a description here...

      See Also:
    • W_VALUE

      public static final int W_VALUE
      The 'W' literal value.

      If the meaning of 'W' literal object isn't clear, there really should be more of a description here...

      See Also:
    • WNW_VALUE

      public static final int WNW_VALUE
      The 'WNW' literal value.

      If the meaning of 'WNW' literal object isn't clear, there really should be more of a description here...

      See Also:
    • NW_VALUE

      public static final int NW_VALUE
      The 'NW' literal value.

      If the meaning of 'NW' literal object isn't clear, there really should be more of a description here...

      See Also:
    • NNW_VALUE

      public static final int NNW_VALUE
      The 'NNW' literal value.

      If the meaning of 'NNW' literal object isn't clear, there really should be more of a description here...

      See Also:
    • VALUES

      public static final List<CompassPointEnumeration> VALUES
      A public read-only list of all the 'Compass Point Enumeration' enumerators.
  • Method Details

    • values

      public static CompassPointEnumeration[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CompassPointEnumeration valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • get

      public static CompassPointEnumeration get(String literal)
      Returns the 'Compass Point Enumeration' literal with the specified literal value.
      Parameters:
      literal - the literal.
      Returns:
      the matching enumerator or null.
    • getByName

      public static CompassPointEnumeration getByName(String name)
      Returns the 'Compass Point Enumeration' literal with the specified name.
      Parameters:
      name - the name.
      Returns:
      the matching enumerator or null.
    • get

      public static CompassPointEnumeration get(int value)
      Returns the 'Compass Point Enumeration' literal with the specified integer value.
      Parameters:
      value - the integer value.
      Returns:
      the matching enumerator or null.
    • getValue

      public int getValue()
      Specified by:
      getValue in interface Enumerator
    • getName

      public String getName()
      Specified by:
      getName in interface Enumerator
    • getLiteral

      public String getLiteral()
      Specified by:
      getLiteral in interface Enumerator
    • toString

      public String toString()
      Returns the literal value of the enumerator, which is its string representation.
      Overrides:
      toString in class Enum<CompassPointEnumeration>