Package org.opengis.metadata.spatial
Class SpatialRepresentationType
java.lang.Object
org.opengis.util.CodeList<SpatialRepresentationType>
org.opengis.metadata.spatial.SpatialRepresentationType
- All Implemented Interfaces:
Serializable
,Comparable<SpatialRepresentationType>
@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
- Version:
- 3.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SpatialRepresentationType
Grid data is used to represent geographic data.private static final long
Serial number for compatibility with different versions.static final SpatialRepresentationType
Three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images.static final SpatialRepresentationType
Textual or tabular data is used to represent geographic data.static final SpatialRepresentationType
Triangulated irregular network.private static final List
<SpatialRepresentationType> List of all enumerations of this type.static final SpatialRepresentationType
Vector data is used to represent geographic data.static final SpatialRepresentationType
Scene from a video recording. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Constructs an enum with the given name. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind than this enum.static SpatialRepresentationType
Returns the spatial representation type that matches the given string, or returns a new one if none match it.static SpatialRepresentationType[]
values()
Returns the list ofSpatialRepresentationType
s.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for compatibility with different versions.- See Also:
-
VALUES
List of all enumerations of this type. Must be declared before any enum declaration. -
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.
-
-
Constructor Details
-
SpatialRepresentationType
Constructs an enum with the given name. The new enum is automatically added to the list returned byvalues()
.- Parameters:
name
- The enum name. This name must not be in use by an other enum of this type.
-
-
Method Details
-
values
Returns the list ofSpatialRepresentationType
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<SpatialRepresentationType>
- Returns:
- The codes of the same kind than this code.
-
valueOf
Returns the spatial representation 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.
-