enum TypeGeometry extends java.lang.Enum<TypeGeometry>
| Enum Constant and Description |
|---|
COLLECTION |
LINE |
MULTILINE |
MULTIPOINT |
MULTIPOLYGON |
MULTISOLID |
POINT |
POLYGON |
SOLID |
UNKNOWN_GEOMETRY |
| Modifier and Type | Field and Description |
|---|---|
private int |
gtype |
| Modifier and Type | Method and Description |
|---|---|
(package private) int |
intValue() |
(package private) static TypeGeometry |
parse(int v) |
static TypeGeometry |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeGeometry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeGeometry UNKNOWN_GEOMETRY
public static final TypeGeometry POINT
public static final TypeGeometry LINE
public static final TypeGeometry POLYGON
public static final TypeGeometry COLLECTION
public static final TypeGeometry MULTIPOINT
public static final TypeGeometry MULTILINE
public static final TypeGeometry MULTIPOLYGON
public static final TypeGeometry SOLID
public static final TypeGeometry MULTISOLID
public static TypeGeometry[] values()
for (TypeGeometry c : TypeGeometry.values()) System.out.println(c);
public static TypeGeometry 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 nullint intValue()
static TypeGeometry parse(int v)