org.opengis.metadata.spatial
Class DimensionNameType

Object
  extended by CodeList<DimensionNameType>
      extended by DimensionNameType
All Implemented Interfaces:
Serializable, Comparable<DimensionNameType>

@UML(identifier="MD_DimensionNameTypeCode",
     specification=ISO_19115)
public final class DimensionNameType
extends CodeList<DimensionNameType>

Name of the dimension.

Since:
GeoAPI 2.0
Author:
Martin Desruisseaux (IRD)
See Also:
Serialized Form

Field Summary
static DimensionNameType COLUMN
          Abscissa (x) axis.
static DimensionNameType CROSS_TRACK
          Perpendicular to the direction of motion of the scan point.
static DimensionNameType LINE
          Scan line of a sensor.
static DimensionNameType ROW
          Ordinate (y) axis.
static DimensionNameType SAMPLE
          Element along a scan line.
static DimensionNameType TIME
          Duration.
static DimensionNameType TRACK
          Along the direction of motion of the scan point
static DimensionNameType VERTICAL
          Vertical (z) axis.
 
Method Summary
 DimensionNameType[] family()
          Returns the list of enumerations of the same kind than this enum.
static DimensionNameType valueOf(String code)
          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 of DimensionNameTypes.
 
Methods inherited from class CodeList
compareTo, equals, identifier, matches, name, ordinal, readResolve, toString, valueOf
 
Methods inherited from class Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ROW

@UML(identifier="row",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType ROW
Ordinate (y) axis.


COLUMN

@UML(identifier="column",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType COLUMN
Abscissa (x) axis.


VERTICAL

@UML(identifier="vertical",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType VERTICAL
Vertical (z) axis.


TRACK

@UML(identifier="track",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType TRACK
Along the direction of motion of the scan point


CROSS_TRACK

@UML(identifier="crossTrack",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType CROSS_TRACK
Perpendicular to the direction of motion of the scan point.


LINE

@UML(identifier="line",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType LINE
Scan line of a sensor.


SAMPLE

@UML(identifier="sample",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType SAMPLE
Element along a scan line.


TIME

@UML(identifier="time",
     obligation=CONDITIONAL,
     specification=ISO_19115)
public static final DimensionNameType TIME
Duration.

Method Detail

values

public static DimensionNameType[] values()
Returns the list of DimensionNameTypes.

Returns:
The list of codes declared in the current JVM.

family

public DimensionNameType[] family()
Returns the list of enumerations of the same kind than this enum.

Specified by:
family in class CodeList<DimensionNameType>
Returns:
The codes of the same kind than this code.

valueOf

public static DimensionNameType valueOf(String code)
Returns the dimension name type 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.


Copyright © 1996-2014 Geotools. All Rights Reserved.