- All Implemented Interfaces:
Serializable
,Comparable<DimensionNameType>
,ControlledVocabulary
@UML(identifier="MD_DimensionNameTypeCode",
specification=ISO_19115)
public final class DimensionNameType
extends CodeList<DimensionNameType>
Name of the dimension.
- Since:
- 2.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final DimensionNameType
Abscissa (x) axis.static final DimensionNameType
Perpendicular to the direction of motion of the scan point.static final DimensionNameType
Scan line of a sensor.static final DimensionNameType
Coordinate (y) axis.static final DimensionNameType
Element along a scan line.static final DimensionNameType
Duration.static final DimensionNameType
Along the direction of motion of the scan pointstatic final DimensionNameType
Vertical (z) axis. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of codes of the same kind as this code list element.static DimensionNameType
Returns the dimension name type that matches the given string, or returns a new one if none match it.static DimensionNameType[]
values()
Returns the list ofDimensionNameType
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
-
ROW
@UML(identifier="row", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType ROWCoordinate (y) axis. -
COLUMN
@UML(identifier="column", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType COLUMNAbscissa (x) axis. -
VERTICAL
@UML(identifier="vertical", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType VERTICALVertical (z) axis. -
TRACK
@UML(identifier="track", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType TRACKAlong the direction of motion of the scan point -
CROSS_TRACK
@UML(identifier="crossTrack", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType CROSS_TRACKPerpendicular to the direction of motion of the scan point. -
LINE
@UML(identifier="line", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType LINEScan line of a sensor. -
SAMPLE
@UML(identifier="sample", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType SAMPLEElement along a scan line. -
TIME
@UML(identifier="time", obligation=CONDITIONAL, specification=ISO_19115) public static final DimensionNameType TIMEDuration.
-
-
Method Details
-
values
Returns the list ofDimensionNameType
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<DimensionNameType>
- Returns:
- all code values for this code list.
-
valueOf
Returns the dimension name type 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.
-