public enum GeospatialIndexType extends Enum<GeospatialIndexType>
QueryOptionsBuilder
to help construct configurations for geospatial indexes.
Must match the encoding method for geospatial coordinates, wich can be stored as
delimited values in a single element, or as values in pairs of elements or attributes.Enum Constant and Description |
---|
ATTRIBUTE_PAIR |
ELEMENT |
ELEMENT_CHILD |
ELEMENT_PAIR |
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 ELEMENT
public static final GeospatialIndexType ELEMENT_CHILD
public static final GeospatialIndexType ELEMENT_PAIR
public static final GeospatialIndexType ATTRIBUTE_PAIR
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 © 2013-2016 MarkLogic Corporation.