public enum GeoSpatialIndexType extends Enum<GeoSpatialIndexType>
| Enum Constant and Description |
|---|
GEO_2D
Simple 2-Dimensional index for legacy-format points.
|
GEO_2DSPHERE
2D Index for GeoJSON-formatted data over a sphere.
|
GEO_HAYSTACK
An haystack index for grouping results over small results.
|
| Modifier and Type | Method and Description |
|---|---|
static GeoSpatialIndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoSpatialIndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoSpatialIndexType GEO_2D
public static final GeoSpatialIndexType GEO_2DSPHERE
public static final GeoSpatialIndexType GEO_HAYSTACK
public static GeoSpatialIndexType[] values()
for (GeoSpatialIndexType c : GeoSpatialIndexType.values()) System.out.println(c);
public static GeoSpatialIndexType 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 © 2011–2018 Pivotal Software, Inc.. All rights reserved.