Package net.opengis.gml
Class TimeIndeterminateValueType
- Object
-
- AbstractEnumerator
-
- TimeIndeterminateValueType
-
- All Implemented Interfaces:
Serializable
,Enumerator
public final class TimeIndeterminateValueType extends AbstractEnumerator
A representation of the literals of the enumeration 'Time Indeterminate Value Type', and utility methods for working with them. This enumerated data type specifies values for indeterminate positions.
-
-
Field Summary
Fields Modifier and Type Field Description static int
AFTER
The 'After' literal value.static TimeIndeterminateValueType
AFTER_LITERAL
The 'After' literal object.static int
BEFORE
The 'Before' literal value.static TimeIndeterminateValueType
BEFORE_LITERAL
The 'Before' literal object.static int
NOW
The 'Now' literal value.static TimeIndeterminateValueType
NOW_LITERAL
The 'Now' literal object.static int
UNKNOWN
The 'Unknown' literal value.static TimeIndeterminateValueType
UNKNOWN_LITERAL
The 'Unknown' literal object.static List
VALUES
A public read-only list of all the 'Time Indeterminate Value Type' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeIndeterminateValueType
get(int value)
Returns the 'Time Indeterminate Value Type' literal with the specified integer value.static TimeIndeterminateValueType
get(String literal)
Returns the 'Time Indeterminate Value Type' literal with the specified literal value.static TimeIndeterminateValueType
getByName(String name)
Returns the 'Time Indeterminate Value Type' literal with the specified name.
-
-
-
Field Detail
-
AFTER
public static final int AFTER
The 'After' literal value.If the meaning of 'After' literal object isn't clear, there really should be more of a description here...
- See Also:
AFTER_LITERAL
, Constant Field Values
-
BEFORE
public static final int BEFORE
The 'Before' literal value.If the meaning of 'Before' literal object isn't clear, there really should be more of a description here...
- See Also:
BEFORE_LITERAL
, Constant Field Values
-
NOW
public static final int NOW
The 'Now' literal value.If the meaning of 'Now' literal object isn't clear, there really should be more of a description here...
- See Also:
NOW_LITERAL
, Constant Field Values
-
UNKNOWN
public static final int UNKNOWN
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_LITERAL
, Constant Field Values
-
AFTER_LITERAL
public static final TimeIndeterminateValueType AFTER_LITERAL
The 'After' literal object.- See Also:
AFTER
-
BEFORE_LITERAL
public static final TimeIndeterminateValueType BEFORE_LITERAL
The 'Before' literal object.- See Also:
BEFORE
-
NOW_LITERAL
public static final TimeIndeterminateValueType NOW_LITERAL
The 'Now' literal object.- See Also:
NOW
-
UNKNOWN_LITERAL
public static final TimeIndeterminateValueType UNKNOWN_LITERAL
The 'Unknown' literal object.- See Also:
UNKNOWN
-
VALUES
public static final List VALUES
A public read-only list of all the 'Time Indeterminate Value Type' enumerators.
-
-
Method Detail
-
get
public static TimeIndeterminateValueType get(String literal)
Returns the 'Time Indeterminate Value Type' literal with the specified literal value.
-
getByName
public static TimeIndeterminateValueType getByName(String name)
Returns the 'Time Indeterminate Value Type' literal with the specified name.
-
get
public static TimeIndeterminateValueType get(int value)
Returns the 'Time Indeterminate Value Type' literal with the specified integer value.
-
-