- All Implemented Interfaces:
Serializable
,Comparable<GeometryDimension>
,Constable
Indicates the dimensionality of a Geometry, relating to the number of spatial dimensions in which the geometry may
have a size.
Geometry dimensions can be used to work out what kind of symbol can be applied to a specific type of geometry. For
example, Point and Multipoint are both zero-dimensional POINT
geometries, and both can be displayed using
a MarkerSymbol
.
- Since:
- 100.0.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA one-dimensional geometry such as aPolyline
.A zero-dimensional geometry such as aPoint
orMultipoint
.A geometry of unknown dimensionality.A three-dimensional volumetric geometry. -
Method Summary
Modifier and TypeMethodDescriptionstatic GeometryDimension
Returns the enum constant of this class with the specified name.static GeometryDimension[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
POINT
A zero-dimensional geometry such as aPoint
orMultipoint
. -
CURVE
A one-dimensional geometry such as aPolyline
. -
AREA
-
VOLUME
A three-dimensional volumetric geometry. Currently, there are no VOLUME geometries supported by this API. -
UNKNOWN
A geometry of unknown dimensionality. May indicate a type of geometry not supported by this API.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-