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 Summary
Enum Constants Enum Constant Description INAPPLICABLE
The 'Inapplicable' literal object.MISSING
The 'Missing' literal object.TEMPLATE
The 'Template' literal object.UNKNOWN
The 'Unknown' literal object.WITHHELD
The 'Withheld' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
INAPPLICABLE_VALUE
The 'Inapplicable' literal value.static int
MISSING_VALUE
The 'Missing' literal value.static int
TEMPLATE_VALUE
The 'Template' literal value.static int
UNKNOWN_VALUE
The 'Unknown' literal value.static List<NullEnumerationMember0>
VALUES
A public read-only list of all the 'Null Enumeration Member0' enumerators.static int
WITHHELD_VALUE
The 'Withheld' literal value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NullEnumerationMember0
get(int value)
Returns the 'Null Enumeration Member0' literal with the specified integer value.static NullEnumerationMember0
get(String literal)
Returns the 'Null Enumeration Member0' literal with the specified literal value.static NullEnumerationMember0
getByName(String name)
Returns the 'Null Enumeration Member0' literal with the specified name.String
getLiteral()
String
getName()
int
getValue()
String
toString()
Returns the literal value of the enumerator, which is its string representation.static NullEnumerationMember0
valueOf(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
-
INAPPLICABLE
public static final NullEnumerationMember0 INAPPLICABLE
The 'Inapplicable' literal object.- See Also:
INAPPLICABLE_VALUE
-
MISSING
public static final NullEnumerationMember0 MISSING
The 'Missing' literal object.- See Also:
MISSING_VALUE
-
TEMPLATE
public static final NullEnumerationMember0 TEMPLATE
The 'Template' literal object.- See Also:
TEMPLATE_VALUE
-
UNKNOWN
public static final NullEnumerationMember0 UNKNOWN
The 'Unknown' literal object.- See Also:
UNKNOWN_VALUE
-
WITHHELD
public static final NullEnumerationMember0 WITHHELD
The 'Withheld' literal object.- See Also:
WITHHELD_VALUE
-
-
Field Detail
-
INAPPLICABLE_VALUE
public 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_VALUE
public 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_VALUE
public 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_VALUE
public 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_VALUE
public 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
-
VALUES
public static final List<NullEnumerationMember0> VALUES
A public read-only list of all the 'Null Enumeration Member0' enumerators.
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
get
public 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
.
-
getByName
public 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
.
-
get
public 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
.
-
getValue
public int getValue()
- Specified by:
getValue
in interfaceEnumerator
-
getName
public String getName()
- Specified by:
getName
in interfaceEnumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteral
in interfaceEnumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<NullEnumerationMember0>
-
-