org.opengts.util
Enum GeoPoint.CompassHeading

java.lang.Object
  extended by java.lang.Enum<GeoPoint.CompassHeading>
      extended by org.opengts.util.GeoPoint.CompassHeading
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GeoPoint.CompassHeading>, EnumTools.IntValue, EnumTools.StringLocale
Enclosing class:
GeoPoint

public static enum GeoPoint.CompassHeading
extends java.lang.Enum<GeoPoint.CompassHeading>
implements EnumTools.StringLocale, EnumTools.IntValue

CompassHeading enumerated type


Enum Constant Summary
E
           
N
           
NE
           
NW
           
S
           
SE
           
SW
           
W
           
 
Method Summary
 java.lang.String getDescription(java.util.Locale loc)
           
 int getIntValue()
           
 java.lang.String toString()
           
 java.lang.String toString(java.util.Locale loc)
           
static GeoPoint.CompassHeading valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GeoPoint.CompassHeading[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

N

public static final GeoPoint.CompassHeading N

NE

public static final GeoPoint.CompassHeading NE

E

public static final GeoPoint.CompassHeading E

SE

public static final GeoPoint.CompassHeading SE

S

public static final GeoPoint.CompassHeading S

SW

public static final GeoPoint.CompassHeading SW

W

public static final GeoPoint.CompassHeading W

NW

public static final GeoPoint.CompassHeading NW
Method Detail

values

public static GeoPoint.CompassHeading[] 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 (GeoPoint.CompassHeading c : GeoPoint.CompassHeading.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GeoPoint.CompassHeading valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getIntValue

public int getIntValue()
Specified by:
getIntValue in interface EnumTools.IntValue

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<GeoPoint.CompassHeading>

toString

public java.lang.String toString(java.util.Locale loc)
Specified by:
toString in interface EnumTools.StringLocale

getDescription

public java.lang.String getDescription(java.util.Locale loc)