- All Implemented Interfaces:
Serializable,Comparable<SpatialRepresentationType>,ControlledVocabulary
@UML(identifier="MD_SpatialRepresentationTypeCode",
specification=ISO_19115)
public final class SpatialRepresentationType
extends CodeList<SpatialRepresentationType>
Method used to represent geographic information in the dataset.
- Since:
- 2.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SpatialRepresentationTypeGrid data is used to represent geographic data.static final SpatialRepresentationTypeThree-dimensional view formed by the intersecting homologous rays of an overlapping pair of images.static final SpatialRepresentationTypeTextual or tabular data is used to represent geographic data.static final SpatialRepresentationTypeTriangulated irregular network.static final SpatialRepresentationTypeVector data is used to represent geographic data.static final SpatialRepresentationTypeScene from a video recording. -
Method Summary
Modifier and TypeMethodDescriptionfamily()Returns the list of codes of the same kind as this code list element.static SpatialRepresentationTypeReturns the spatial representation type that matches the given string, or returns a new one if none match it.static SpatialRepresentationType[]values()Returns the list ofSpatialRepresentationTypes.Methods inherited from class org.opengis.util.CodeList
compareTo, identifier, name, ordinal, readResolve, toString, valueOf, valueOf, valueOf, valuesMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.opengis.util.ControlledVocabulary
names
-
Field Details
-
VECTOR
@UML(identifier="vector", obligation=CONDITIONAL, specification=ISO_19115) public static final SpatialRepresentationType VECTORVector data is used to represent geographic data. -
GRID
@UML(identifier="grid", obligation=CONDITIONAL, specification=ISO_19115) public static final SpatialRepresentationType GRIDGrid data is used to represent geographic data. -
TEXT_TABLE
@UML(identifier="textTable", obligation=CONDITIONAL, specification=ISO_19115) public static final SpatialRepresentationType TEXT_TABLETextual or tabular data is used to represent geographic data. -
TIN
@UML(identifier="tin", obligation=CONDITIONAL, specification=ISO_19115) public static final SpatialRepresentationType TINTriangulated irregular network. -
STEREO_MODEL
@UML(identifier="stereoModel", obligation=CONDITIONAL, specification=ISO_19115) public static final SpatialRepresentationType STEREO_MODELThree-dimensional view formed by the intersecting homologous rays of an overlapping pair of images. -
VIDEO
@UML(identifier="video", obligation=CONDITIONAL, specification=ISO_19115) public static final SpatialRepresentationType VIDEOScene from a video recording.
-
-
Method Details
-
values
Returns the list ofSpatialRepresentationTypes.- 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 parentCodeListclass.- Specified by:
familyin interfaceControlledVocabulary- Specified by:
familyin classCodeList<SpatialRepresentationType>- Returns:
- all code values for this code list.
-
valueOf
Returns the spatial representation 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.
-