Enum Geospatial.Type
- All Implemented Interfaces:
Serializable
,Comparable<Geospatial.Type>
,java.lang.constant.Constable
- Enclosing class:
- Geospatial
Type of the geospatial type
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe OGIS geometry type number for feature collections.The OGIS geometry type number for lines.The OGIS geometry type number for aggregate lines.The OGIS geometry type number for aggregate points.The OGIS geometry type number for aggregate polygons.The OGIS geometry type number for points.The OGIS geometry type number for polygons. -
Method Summary
Modifier and TypeMethodDescriptionstatic Geospatial.Type
Returns the enum constant of this type with the specified name.static Geospatial.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
POINT
The OGIS geometry type number for points. -
LINESTRING
The OGIS geometry type number for lines. -
POLYGON
The OGIS geometry type number for polygons. -
MULTIPOINT
The OGIS geometry type number for aggregate points. -
MULTILINESTRING
The OGIS geometry type number for aggregate lines. -
MULTIPOLYGON
The OGIS geometry type number for aggregate polygons. -
GEOSPATIALCOLLECTION
The OGIS geometry type number for feature collections.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-