public enum OpenGisType extends java.lang.Enum<OpenGisType>
| Enum Constant and Description |
|---|
GEOMETRYCOLLECTION |
INVALID_TYPE |
LINESTRING |
MULTILINESTRING |
MULTIPOINT |
MULTIPOLYGON |
POINT |
POLYGON |
| Modifier and Type | Field and Description |
|---|---|
(package private) byte |
byteValue |
(package private) java.lang.Class<? extends Geometry> |
geomClass |
| Modifier and Type | Method and Description |
|---|---|
(package private) boolean |
typeOf(java.lang.Object o) |
(package private) static OpenGisType |
valueOf(byte b) |
static OpenGisType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpenGisType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenGisType POINT
public static final OpenGisType LINESTRING
public static final OpenGisType POLYGON
public static final OpenGisType MULTIPOINT
public static final OpenGisType MULTILINESTRING
public static final OpenGisType MULTIPOLYGON
public static final OpenGisType GEOMETRYCOLLECTION
public static final OpenGisType INVALID_TYPE
final byte byteValue
final java.lang.Class<? extends Geometry> geomClass
public static OpenGisType[] values()
for (OpenGisType c : OpenGisType.values()) System.out.println(c);
public static OpenGisType 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 nullboolean typeOf(java.lang.Object o)
static OpenGisType valueOf(byte b)