Package net.opengis.gml311
Enum NullEnumerationMember0
- Object
- 
- Enum<NullEnumerationMember0>
- 
- NullEnumerationMember0
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<NullEnumerationMember0>,- Enumerator
 
 public enum NullEnumerationMember0 extends Enum<NullEnumerationMember0> implements Enumerator A representation of the literals of the enumeration 'Null Enumeration Member0', and utility methods for working with them.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description INAPPLICABLEThe 'Inapplicable' literal object.MISSINGThe 'Missing' literal object.TEMPLATEThe 'Template' literal object.UNKNOWNThe 'Unknown' literal object.WITHHELDThe 'Withheld' literal object.
 - 
Field SummaryFields Modifier and Type Field Description static intINAPPLICABLE_VALUEThe 'Inapplicable' literal value.static intMISSING_VALUEThe 'Missing' literal value.static intTEMPLATE_VALUEThe 'Template' literal value.static intUNKNOWN_VALUEThe 'Unknown' literal value.static List<NullEnumerationMember0>VALUESA public read-only list of all the 'Null Enumeration Member0' enumerators.static intWITHHELD_VALUEThe 'Withheld' literal value.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NullEnumerationMember0get(int value)Returns the 'Null Enumeration Member0' literal with the specified integer value.static NullEnumerationMember0get(String literal)Returns the 'Null Enumeration Member0' literal with the specified literal value.static NullEnumerationMember0getByName(String name)Returns the 'Null Enumeration Member0' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static NullEnumerationMember0valueOf(String name)Returns the enum constant of this type with the specified name.static NullEnumerationMember0[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
INAPPLICABLEpublic static final NullEnumerationMember0 INAPPLICABLE The 'Inapplicable' literal object.- See Also:
- INAPPLICABLE_VALUE
 
 - 
MISSINGpublic static final NullEnumerationMember0 MISSING The 'Missing' literal object.- See Also:
- MISSING_VALUE
 
 - 
TEMPLATEpublic static final NullEnumerationMember0 TEMPLATE The 'Template' literal object.- See Also:
- TEMPLATE_VALUE
 
 - 
UNKNOWNpublic static final NullEnumerationMember0 UNKNOWN The 'Unknown' literal object.- See Also:
- UNKNOWN_VALUE
 
 - 
WITHHELDpublic static final NullEnumerationMember0 WITHHELD The 'Withheld' literal object.- See Also:
- WITHHELD_VALUE
 
 
- 
 - 
Field Detail- 
INAPPLICABLE_VALUEpublic static final int INAPPLICABLE_VALUE The 'Inapplicable' literal value.If the meaning of 'Inapplicable' literal object isn't clear, there really should be more of a description here... - See Also:
- INAPPLICABLE, Constant Field Values
 
 - 
MISSING_VALUEpublic static final int MISSING_VALUE The 'Missing' literal value.If the meaning of 'Missing' literal object isn't clear, there really should be more of a description here... - See Also:
- MISSING, Constant Field Values
 
 - 
TEMPLATE_VALUEpublic static final int TEMPLATE_VALUE The 'Template' literal value.If the meaning of 'Template' literal object isn't clear, there really should be more of a description here... - See Also:
- TEMPLATE, Constant Field Values
 
 - 
UNKNOWN_VALUEpublic static final int UNKNOWN_VALUE The 'Unknown' literal value.If the meaning of 'Unknown' literal object isn't clear, there really should be more of a description here... - See Also:
- UNKNOWN, Constant Field Values
 
 - 
WITHHELD_VALUEpublic static final int WITHHELD_VALUE The 'Withheld' literal value.If the meaning of 'Withheld' literal object isn't clear, there really should be more of a description here... - See Also:
- WITHHELD, Constant Field Values
 
 - 
VALUESpublic static final List<NullEnumerationMember0> VALUES A public read-only list of all the 'Null Enumeration Member0' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static NullEnumerationMember0[] 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 (NullEnumerationMember0 c : NullEnumerationMember0.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static NullEnumerationMember0 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 NullEnumerationMember0 get(String literal) Returns the 'Null Enumeration Member0' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static NullEnumerationMember0 getByName(String name) Returns the 'Null Enumeration Member0' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static NullEnumerationMember0 get(int value) Returns the 'Null Enumeration 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<NullEnumerationMember0>
 
 
- 
 
-