- 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
Modifier and TypeFieldDescriptionstatic final TopologyLevel
Topological complex without any specified geometric realization.static final TopologyLevel
2-dimensional topological complex which is planar.static final TopologyLevel
2-dimensional topological complex which is isomorphic to a subset of a surface.static final TopologyLevel
Complete coverage of a 3D coordinate space.static final TopologyLevel
Geometry objects without any additional structure which describes topology.static final TopologyLevel
1-dimensional topological complex which is planar.static final TopologyLevel
1-dimensional topological complex which is isomorphic to a subset of a surface.static final TopologyLevel
1-dimensional topological complex.static final TopologyLevel
3-dimensional topological complex. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of codes of the same kind as this code list element.static TopologyLevel
Returns the topology level that matches the given string, or returns a new one if none match it.static TopologyLevel[]
values()
Returns the list ofTopologyLevel
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
-
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 ofTopologyLevel
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<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.
-