Package org.geotools.api.temporal
Class IndeterminateValue
- Object
-
- CodeList<IndeterminateValue>
-
- IndeterminateValue
-
- All Implemented Interfaces:
Serializable,Comparable<IndeterminateValue>
@UML(identifier="TM_IndeterminateValue", specification=ISO_19108) public final class IndeterminateValue extends CodeList<IndeterminateValue>
Provides 4 values for indeterminate positions.- Author:
- Stephane Fellah (Image Matters), Alexander Petkov, Martin Desruisseaux (IRD)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static IndeterminateValueAFTERstatic IndeterminateValueBEFOREstatic IndeterminateValueNOWstatic IndeterminateValueUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IndeterminateValue[]family()Returns the list of enumerations of the same kind than this enum.static IndeterminateValuevalueOf(String code)Returns the indeterminate value that matches the given string, or returns a new one if none match it.static IndeterminateValue[]values()Returns the list ofIndeterminateValues.
-
-
-
Field Detail
-
UNKNOWN
public static final IndeterminateValue UNKNOWN
-
NOW
public static final IndeterminateValue NOW
-
BEFORE
public static final IndeterminateValue BEFORE
-
AFTER
public static final IndeterminateValue AFTER
-
-
Method Detail
-
values
public static IndeterminateValue[] values()
Returns the list ofIndeterminateValues.- Returns:
- The list of codes declared in the current JVM.
-
family
public IndeterminateValue[] family()
Returns the list of enumerations of the same kind than this enum.- Specified by:
familyin classCodeList<IndeterminateValue>- Returns:
- The codes of the same kind than this code.
-
valueOf
public static IndeterminateValue valueOf(String code)
Returns the indeterminate value that matches the given string, or returns a new one if none match it.- Parameters:
code- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-
-