Package net.opengis.gml311
Enum DirectionTypeMember0
- Object
- 
- Enum<DirectionTypeMember0>
- 
- DirectionTypeMember0
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<DirectionTypeMember0>,- Enumerator
 
 public enum DirectionTypeMember0 extends Enum<DirectionTypeMember0> implements Enumerator A representation of the literals of the enumeration 'Direction Type Member0', and utility methods for working with them.- See Also:
- Gml311Package.getDirectionTypeMember0()
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intE_VALUEThe 'E' literal value.static intN_VALUEThe 'N' literal value.static intS_VALUEThe 'S' literal value.static List<DirectionTypeMember0>VALUESA public read-only list of all the 'Direction Type Member0' enumerators.static intW_VALUEThe 'W' literal value.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DirectionTypeMember0get(int value)Returns the 'Direction Type Member0' literal with the specified integer value.static DirectionTypeMember0get(String literal)Returns the 'Direction Type Member0' literal with the specified literal value.static DirectionTypeMember0getByName(String name)Returns the 'Direction Type Member0' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static DirectionTypeMember0valueOf(String name)Returns the enum constant of this type with the specified name.static DirectionTypeMember0[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Npublic static final DirectionTypeMember0 N The 'N' literal object.- See Also:
- N_VALUE
 
 - 
Epublic static final DirectionTypeMember0 E The 'E' literal object.- See Also:
- E_VALUE
 
 - 
Spublic static final DirectionTypeMember0 S The 'S' literal object.- See Also:
- S_VALUE
 
 - 
Wpublic static final DirectionTypeMember0 W The 'W' literal object.- See Also:
- W_VALUE
 
 
- 
 - 
Field Detail- 
N_VALUEpublic 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:
- N, Constant Field Values
 
 - 
E_VALUEpublic 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:
- E, Constant Field Values
 
 - 
S_VALUEpublic 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:
- S, Constant Field Values
 
 - 
W_VALUEpublic 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:
- W, Constant Field Values
 
 - 
VALUESpublic static final List<DirectionTypeMember0> VALUES A public read-only list of all the 'Direction Type Member0' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static DirectionTypeMember0[] 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 (DirectionTypeMember0 c : DirectionTypeMember0.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DirectionTypeMember0 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
 
 - 
getpublic static DirectionTypeMember0 get(String literal) Returns the 'Direction Type Member0' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static DirectionTypeMember0 getByName(String name) Returns the 'Direction Type Member0' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static DirectionTypeMember0 get(int value) Returns the 'Direction Type Member0' literal with the specified integer value.- Parameters:
- value- the integer value.
- Returns:
- the matching enumerator or null.
 
 - 
getValuepublic int getValue() - Specified by:
- getValuein interface- Enumerator
 
 - 
getNamepublic String getName() - Specified by:
- getNamein interface- Enumerator
 
 - 
getLiteralpublic String getLiteral() - Specified by:
- getLiteralin interface- Enumerator
 
 - 
toStringpublic String toString() Returns the literal value of the enumerator, which is its string representation.- Overrides:
- toStringin class- Enum<DirectionTypeMember0>
 
 
- 
 
-