net.opengis.gml
Enum CompassPointEnumeration

java.lang.Object
  extended by java.lang.Enum<CompassPointEnumeration>
      extended by net.opengis.gml.CompassPointEnumeration
All Implemented Interfaces:
Serializable, Comparable<CompassPointEnumeration>

public enum CompassPointEnumeration
extends Enum<CompassPointEnumeration>

Classe Java pour CompassPointEnumeration.

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.

 <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(String v)
           
 String value()
           
static CompassPointEnumeration valueOf(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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, 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 CompassPointEnumeration[] 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 (CompassPointEnumeration c : CompassPointEnumeration.values())
    System.out.println(c);

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

valueOf

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

fromValue

public static CompassPointEnumeration fromValue(String v)


Copyright © 2014 IRSTV CNRS-FR-2488. All Rights Reserved.