- All Implemented Interfaces:
Serializable,Comparable<TopologyLevel>,ControlledVocabulary
@UML(identifier="MD_TopologyLevelCode",
specification=ISO_19115)
public final class TopologyLevel
extends CodeList<TopologyLevel>
Degree of complexity of the spatial relationships.
- 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 TopologyLevelTopological complex without any specified geometric realization.static final TopologyLevel2-dimensional topological complex which is planar.static final TopologyLevel2-dimensional topological complex which is isomorphic to a subset of a surface.static final TopologyLevelComplete coverage of a 3D coordinate space.static final TopologyLevelGeometry objects without any additional structure which describes topology.static final TopologyLevel1-dimensional topological complex which is planar.static final TopologyLevel1-dimensional topological complex which is isomorphic to a subset of a surface.static final TopologyLevel1-dimensional topological complex.static final TopologyLevel3-dimensional topological complex. -
Method Summary
Modifier and TypeMethodDescriptionfamily()Returns the list of codes of the same kind as this code list element.static TopologyLevelReturns the topology level that matches the given string, or returns a new one if none match it.static TopologyLevel[]values()Returns the list ofTopologyLevels.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
-
GEOMETRY_ONLY
@UML(identifier="geometryOnly", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel GEOMETRY_ONLYGeometry objects without any additional structure which describes topology. -
TOPOLOGY_1D
@UML(identifier="topology1D", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel TOPOLOGY_1D1-dimensional topological complex. -
PLANAR_GRAPH
@UML(identifier="planarGraph", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel PLANAR_GRAPH1-dimensional topological complex which is planar. -
FULL_PLANAR_GRAPH
@UML(identifier="fullPlanarGraph", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel FULL_PLANAR_GRAPH2-dimensional topological complex which is planar. -
SURFACE_GRAPH
@UML(identifier="surfaceGraph", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel SURFACE_GRAPH1-dimensional topological complex which is isomorphic to a subset of a surface. -
FULL_SURFACE_GRAPH
@UML(identifier="fullSurfaceGraph", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel FULL_SURFACE_GRAPH2-dimensional topological complex which is isomorphic to a subset of a surface. -
TOPOLOGY_3D
@UML(identifier="topology3D", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel TOPOLOGY_3D3-dimensional topological complex. -
FULL_TOPOLOGY_3D
@UML(identifier="fullTopology3D", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel FULL_TOPOLOGY_3DComplete coverage of a 3D coordinate space. -
ABSTRACT
@UML(identifier="abstract", obligation=CONDITIONAL, specification=ISO_19115) public static final TopologyLevel ABSTRACTTopological complex without any specified geometric realization.
-
-
Method Details
-
values
Returns the list ofTopologyLevels.- 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<TopologyLevel>- Returns:
- all code values for this code list.
-
valueOf
Returns the topology level 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.
-