public enum GeometryType extends Enum<GeometryType>
| Enum Constant and Description |
|---|
GEOMETRY_COLLECTION |
LINE_STRING |
MULTI_LINE_STRING |
MULTI_POINT |
MULTI_POLYGON |
POINT |
POLYGON |
| Modifier and Type | Method and Description |
|---|---|
static GeometryType |
getForEsriGeometryType(String type) |
static GeometryType |
getForJtsGeometryType(String type) |
boolean |
isMultitype() |
io.airlift.slice.Slice |
standardName() |
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 MULTI_POINT
public static final GeometryType LINE_STRING
public static final GeometryType MULTI_LINE_STRING
public static final GeometryType POLYGON
public static final GeometryType MULTI_POLYGON
public static final GeometryType GEOMETRY_COLLECTION
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 nullpublic boolean isMultitype()
public io.airlift.slice.Slice standardName()
public static GeometryType getForEsriGeometryType(String type)
public static GeometryType getForJtsGeometryType(String type)
Copyright © 2012–2019. All rights reserved.