public enum GeometryType extends java.lang.Enum<GeometryType>
Enum Constant and Description |
---|
LineString
Defines that the values describe lines.
|
MultiLineString
Defines that the values describe multiple lines.
|
MultiPoint
Defines that the values describe multiple points.
|
MultiPolygon
Defines that the values describe multiple polygons.
|
Point
Defines that the values describe points.
|
Polygon
Defines that the values describe polygons.
|
Modifier and Type | Method and Description |
---|---|
int |
getDepth()
Returns the list depth that this geometry type uses.
|
static GeometryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeometryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeometryType Point
public static final GeometryType MultiPoint
public static final GeometryType LineString
public static final GeometryType MultiLineString
public static final GeometryType Polygon
public static final GeometryType MultiPolygon
public static GeometryType[] values()
for (GeometryType c : GeometryType.values()) System.out.println(c);
public static GeometryType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getDepth()
Copyright © 2014 Integral Solutions Ltd. All Rights Reserved.