public static enum Geometry.GeometryType extends java.lang.Enum<Geometry.GeometryType>
Enum Constant and Description |
---|
EXTENT |
MULTIPOINT |
NOT_SET |
POINT |
POLYGON |
POLYLINE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static Geometry.GeometryType |
gwtValueOf(java.lang.String value) |
static Geometry.GeometryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Geometry.GeometryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geometry.GeometryType NOT_SET
public static final Geometry.GeometryType POINT
public static final Geometry.GeometryType MULTIPOINT
public static final Geometry.GeometryType POLYLINE
public static final Geometry.GeometryType POLYGON
public static final Geometry.GeometryType EXTENT
public static Geometry.GeometryType[] values()
for (Geometry.GeometryType c : Geometry.GeometryType.values()) System.out.println(c);
public static Geometry.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 java.lang.String getValue()
public static Geometry.GeometryType gwtValueOf(java.lang.String value)