- All Implemented Interfaces:
Serializable
,Comparable<IndeterminateValue>
,ControlledVocabulary
@UML(identifier="TM_IndeterminateValue",
specification=ISO_19108)
public final class IndeterminateValue
extends CodeList<IndeterminateValue>
Indications that a temporal position is not precisely known.
- Since:
- 3.1
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final IndeterminateValue
Indicates that the actual temporal position is unknown, but it is known to be after the specified value.static final IndeterminateValue
Indicate that the actual temporal position is unknown, but it is known to be before the specified value.static final IndeterminateValue
Indicates that the specified value shall be replaced with the current temporal position whenever the value is accessed.static final IndeterminateValue
Indicates that no specific value for temporal position is provided. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of codes of the same kind as this code list element.static IndeterminateValue
Returns the indeterminate value that matches the given string, or returns a new one if none match it.static IndeterminateValue[]
values()
Returns the list ofIndeterminateValue
s.Methods inherited from class org.opengis.util.CodeList
compareTo, identifier, name, ordinal, readResolve, toString, valueOf, valueOf, valueOf, values
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opengis.util.ControlledVocabulary
names
-
Field Details
-
UNKNOWN
@UML(identifier="unknown", obligation=CONDITIONAL, specification=ISO_19108) public static final IndeterminateValue UNKNOWNIndicates that no specific value for temporal position is provided. -
NOW
@UML(identifier="now", obligation=CONDITIONAL, specification=ISO_19108) public static final IndeterminateValue NOWIndicates that the specified value shall be replaced with the current temporal position whenever the value is accessed. -
BEFORE
@UML(identifier="before", obligation=CONDITIONAL, specification=ISO_19108) public static final IndeterminateValue BEFOREIndicate that the actual temporal position is unknown, but it is known to be before the specified value. -
AFTER
@UML(identifier="after", obligation=CONDITIONAL, specification=ISO_19108) public static final IndeterminateValue AFTERIndicates that the actual temporal position is unknown, but it is known to be after the specified value.
-
-
Method Details
-
values
Returns the list ofIndeterminateValue
s.- Returns:
- the list of codes declared in the current JVM.
-
family
Returns the list of codes of the same kind as this code list element. Invoking this method is equivalent to invokingvalues()
, except that this method can be invoked on an instance of the parentCodeList
class.- Specified by:
family
in interfaceControlledVocabulary
- Specified by:
family
in classCodeList<IndeterminateValue>
- Returns:
- all code values for this code list.
-
valueOf
Returns the indeterminate value that matches the given string, or returns a new one if none match it. This methods returns the first instance (in declaration order) for which the name is equals, ignoring case, to the given name. If no existing instance is found, then a new one is created for the given name.- Parameters:
code
- the name of the code to fetch or to create.- Returns:
- a code matching the given name.
-