public enum GeometryType extends Enum<GeometryType>
Geometry
types.Enum Constant and Description |
---|
CURVE |
GEOMETRY_COLLECTION |
LINE_STRING |
LINEAR_RING |
MULTI_CURVE |
MULTI_LINE_STRING |
MULTI_POINT |
MULTI_POLYGON |
MULTI_SURFACE |
POINT |
POLYGON |
POLYHEDRAL_SURFACE |
SURFACE |
TIN |
Modifier and Type | Method and Description |
---|---|
static GeometryType |
valueOf(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 CURVE
public static final GeometryType SURFACE
public static final GeometryType GEOMETRY_COLLECTION
public static final GeometryType LINE_STRING
public static final GeometryType LINEAR_RING
public static final GeometryType POLYGON
public static final GeometryType POLYHEDRAL_SURFACE
public static final GeometryType MULTI_SURFACE
public static final GeometryType MULTI_CURVE
public static final GeometryType MULTI_POINT
public static final GeometryType TIN
public static final GeometryType MULTI_POLYGON
public static final GeometryType MULTI_LINE_STRING
public static GeometryType[] values()
for (GeometryType c : GeometryType.values()) System.out.println(c);
public static GeometryType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015 geolatte.org. All rights reserved.