Enum TopologyLevel
- java.lang.Object
-
- java.lang.Enum<TopologyLevel>
-
- org.gcube.spatial.data.geonetwork.iso.tpl.codelists.TopologyLevel
-
- All Implemented Interfaces:
Serializable,Comparable<TopologyLevel>
public enum TopologyLevel extends Enum<TopologyLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSTRACTFULL_PLANAR_GRAPHFULL_SURFACE_GRAPHGEOMETRY_ONLYPLANAR_GRAPHSURFACE_GRAPHTOPOLOGY_1DTOPOLOGY_3D
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TopologyLevelgetById(String id)static TopologyLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static TopologyLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GEOMETRY_ONLY
public static final TopologyLevel GEOMETRY_ONLY
-
TOPOLOGY_1D
public static final TopologyLevel TOPOLOGY_1D
-
PLANAR_GRAPH
public static final TopologyLevel PLANAR_GRAPH
-
FULL_PLANAR_GRAPH
public static final TopologyLevel FULL_PLANAR_GRAPH
-
SURFACE_GRAPH
public static final TopologyLevel SURFACE_GRAPH
-
FULL_SURFACE_GRAPH
public static final TopologyLevel FULL_SURFACE_GRAPH
-
TOPOLOGY_3D
public static final TopologyLevel TOPOLOGY_3D
-
ABSTRACT
public static final TopologyLevel ABSTRACT
-
-
Method Detail
-
values
public static TopologyLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TopologyLevel c : TopologyLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TopologyLevel valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getById
public static TopologyLevel getById(String id)
-
-