org.citygml4j.jaxb.gml._3_1_1
Enum CompassPointEnumeration

java.lang.Object
  extended by java.lang.Enum<CompassPointEnumeration>
      extended by org.citygml4j.jaxb.gml._3_1_1.CompassPointEnumeration
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CompassPointEnumeration>

public enum CompassPointEnumeration
extends java.lang.Enum<CompassPointEnumeration>

Java class for CompassPointEnumeration.

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

 <simpleType name="CompassPointEnumeration">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="N"/>
     <enumeration value="NNE"/>
     <enumeration value="NE"/>
     <enumeration value="ENE"/>
     <enumeration value="E"/>
     <enumeration value="ESE"/>
     <enumeration value="SE"/>
     <enumeration value="SSE"/>
     <enumeration value="S"/>
     <enumeration value="SSW"/>
     <enumeration value="SW"/>
     <enumeration value="WSW"/>
     <enumeration value="W"/>
     <enumeration value="WNW"/>
     <enumeration value="NW"/>
     <enumeration value="NNW"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
E
           
ENE
           
ESE
           
N
           
NE
           
NNE
           
NNW
           
NW
           
S
           
SE
           
SSE
           
SSW
           
SW
           
W
           
WNW
           
WSW
           
 
Method Summary
static CompassPointEnumeration fromValue(java.lang.String v)
           
 java.lang.String value()
           
static CompassPointEnumeration valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CompassPointEnumeration[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

N

public static final CompassPointEnumeration N

NNE

public static final CompassPointEnumeration NNE

NE

public static final CompassPointEnumeration NE

ENE

public static final CompassPointEnumeration ENE

E

public static final CompassPointEnumeration E

ESE

public static final CompassPointEnumeration ESE

SE

public static final CompassPointEnumeration SE

SSE

public static final CompassPointEnumeration SSE

S

public static final CompassPointEnumeration S

SSW

public static final CompassPointEnumeration SSW

SW

public static final CompassPointEnumeration SW

WSW

public static final CompassPointEnumeration WSW

W

public static final CompassPointEnumeration W

WNW

public static final CompassPointEnumeration WNW

NW

public static final CompassPointEnumeration NW

NNW

public static final CompassPointEnumeration NNW
Method Detail

values

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

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

valueOf

public static CompassPointEnumeration 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

value

public java.lang.String value()

fromValue

public static CompassPointEnumeration fromValue(java.lang.String v)