public static enum Geometries.Type extends Enum<Geometries.Type>
| Enum Constant and Description |
|---|
CURVE |
GEOMCOLLECTION |
Geometry |
LINESTRING |
MULTILINESTRING |
MULTIPOINT |
MULTIPOLYGON |
POINT |
POLYGON |
POLYHEDRALSURFACE |
SURFACE |
| Modifier and Type | Method and Description |
|---|---|
static Geometries.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Geometries.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geometries.Type Geometry
public static final Geometries.Type POINT
public static final Geometries.Type LINESTRING
public static final Geometries.Type POLYGON
public static final Geometries.Type MULTIPOINT
public static final Geometries.Type MULTILINESTRING
public static final Geometries.Type MULTIPOLYGON
public static final Geometries.Type GEOMCOLLECTION
public static final Geometries.Type CURVE
public static final Geometries.Type SURFACE
public static final Geometries.Type POLYHEDRALSURFACE
public static Geometries.Type[] values()
for (Geometries.Type c : Geometries.Type.values()) System.out.println(c);
public static Geometries.Type 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 © 2012-2020 Apache Software Foundation. All Rights Reserved.