Package net.opengis.wfs
Class AllSomeType
- Object
-
- AbstractEnumerator
-
- AllSomeType
-
- All Implemented Interfaces:
Serializable
,Enumerator
public final class AllSomeType extends AbstractEnumerator
A representation of the literals of the enumeration 'All Some Type', and utility methods for working with them.- See Also:
WfsPackage.getAllSomeType()
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
ALL
The 'ALL' literal value.static AllSomeType
ALL_LITERAL
The 'ALL' literal object.static int
SOME
The 'SOME' literal value.static AllSomeType
SOME_LITERAL
The 'SOME' literal object.static List
VALUES
A public read-only list of all the 'All Some Type' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AllSomeType
get(int value)
Returns the 'All Some Type' literal with the specified integer value.static AllSomeType
get(String literal)
Returns the 'All Some Type' literal with the specified literal value.static AllSomeType
getByName(String name)
Returns the 'All Some Type' literal with the specified name.
-
-
-
Field Detail
-
ALL
public static final int ALL
The 'ALL' literal value.If the meaning of 'ALL' literal object isn't clear, there really should be more of a description here...
- See Also:
ALL_LITERAL
, Constant Field Values
-
SOME
public static final int SOME
The 'SOME' literal value.If the meaning of 'SOME' literal object isn't clear, there really should be more of a description here...
- See Also:
SOME_LITERAL
, Constant Field Values
-
ALL_LITERAL
public static final AllSomeType ALL_LITERAL
The 'ALL' literal object.- See Also:
ALL
-
SOME_LITERAL
public static final AllSomeType SOME_LITERAL
The 'SOME' literal object.- See Also:
SOME
-
VALUES
public static final List VALUES
A public read-only list of all the 'All Some Type' enumerators.
-
-
Method Detail
-
get
public static AllSomeType get(String literal)
Returns the 'All Some Type' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static AllSomeType getByName(String name)
Returns the 'All Some Type' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static AllSomeType get(int value)
Returns the 'All Some Type' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
-