Package net.opengis.wfs20
Enum NonNegativeIntegerOrUnknownMember0
- Object
- 
- Enum<NonNegativeIntegerOrUnknownMember0>
- 
- NonNegativeIntegerOrUnknownMember0
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<NonNegativeIntegerOrUnknownMember0>,- Enumerator
 
 public enum NonNegativeIntegerOrUnknownMember0 extends Enum<NonNegativeIntegerOrUnknownMember0> implements Enumerator A representation of the literals of the enumeration 'Non Negative Integer Or Unknown Member0', and utility methods for working with them.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description UNKNOWNThe 'Unknown' literal object.
 - 
Field SummaryFields Modifier and Type Field Description static intUNKNOWN_VALUEThe 'Unknown' literal value.static List<NonNegativeIntegerOrUnknownMember0>VALUESA public read-only list of all the 'Non Negative Integer Or Unknown Member0' enumerators.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NonNegativeIntegerOrUnknownMember0get(int value)Returns the 'Non Negative Integer Or Unknown Member0' literal with the specified integer value.static NonNegativeIntegerOrUnknownMember0get(String literal)Returns the 'Non Negative Integer Or Unknown Member0' literal with the specified literal value.static NonNegativeIntegerOrUnknownMember0getByName(String name)Returns the 'Non Negative Integer Or Unknown Member0' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static NonNegativeIntegerOrUnknownMember0valueOf(String name)Returns the enum constant of this type with the specified name.static NonNegativeIntegerOrUnknownMember0[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
UNKNOWNpublic static final NonNegativeIntegerOrUnknownMember0 UNKNOWN The 'Unknown' literal object.- See Also:
- UNKNOWN_VALUE
 
 
- 
 - 
Field Detail- 
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
 
 - 
VALUESpublic static final List<NonNegativeIntegerOrUnknownMember0> VALUES A public read-only list of all the 'Non Negative Integer Or Unknown Member0' enumerators.
 
- 
 - 
Method Detail- 
valuespublic static NonNegativeIntegerOrUnknownMember0[] 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 (NonNegativeIntegerOrUnknownMember0 c : NonNegativeIntegerOrUnknownMember0.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static NonNegativeIntegerOrUnknownMember0 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 NonNegativeIntegerOrUnknownMember0 get(String literal) Returns the 'Non Negative Integer Or Unknown Member0' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static NonNegativeIntegerOrUnknownMember0 getByName(String name) Returns the 'Non Negative Integer Or Unknown Member0' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static NonNegativeIntegerOrUnknownMember0 get(int value) Returns the 'Non Negative Integer Or Unknown 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<NonNegativeIntegerOrUnknownMember0>
 
 
- 
 
-