public static enum Geospatial.Dimension extends Enum<Geospatial.Dimension>
Enum Constant and Description |
---|
GEOGRAPHY
Geography type
|
GEOMETRY
Geometry type
|
Modifier and Type | Method and Description |
---|---|
static Geospatial.Dimension |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Geospatial.Dimension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geospatial.Dimension GEOMETRY
public static final Geospatial.Dimension GEOGRAPHY
public static Geospatial.Dimension[] values()
for (Geospatial.Dimension c : Geospatial.Dimension.values()) System.out.println(c);
public static Geospatial.Dimension 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 © 2013–2018 The Apache Software Foundation. All rights reserved.