- All Implemented Interfaces:
Serializable
,Comparable<RealizationMethod>
,ControlledVocabulary
@UML(identifier="RealizationMethod",
specification=ISO_19111)
public final class RealizationMethod
extends CodeList<RealizationMethod>
Specification of the method by which the vertical reference frame is realized.
- 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 RealizationMethod
Realization is through a geoid height model or a height correction model.static final RealizationMethod
Realization is by adjustment of a levelling network fixed to one or more tide gauges.static final RealizationMethod
Realization is through a tidal model or by tidal predictions. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of codes of the same kind as this code list element.static RealizationMethod
Returns the realization method that matches the given string, or returns a new one if none match it.static RealizationMethod[]
values()
Returns the list ofRealizationMethod
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
-
LEVELLING
@UML(identifier="levelling", obligation=CONDITIONAL, specification=ISO_19111) public static final RealizationMethod LEVELLINGRealization is by adjustment of a levelling network fixed to one or more tide gauges. -
GEOID
@UML(identifier="geoid", obligation=CONDITIONAL, specification=ISO_19111) public static final RealizationMethod GEOIDRealization is through a geoid height model or a height correction model. This is applied to a specified geodetic CRS. -
TIDAL
@UML(identifier="tidal", obligation=CONDITIONAL, specification=ISO_19111) public static final RealizationMethod TIDALRealization is through a tidal model or by tidal predictions.
-
-
Method Details
-
values
Returns the list ofRealizationMethod
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<RealizationMethod>
- Returns:
- all code values for this code list.
-
valueOf
Returns the realization method 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.
-