public static enum SpatialOptions.SpatialSearchStrategy extends Enum<SpatialOptions.SpatialSearchStrategy>
Enum Constant and Description |
---|
BOUNDING_BOX |
GEOHASH_PREFIX_TREE |
QUAD_PREFIX_TREE |
Modifier and Type | Method and Description |
---|---|
static SpatialOptions.SpatialSearchStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialOptions.SpatialSearchStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpatialOptions.SpatialSearchStrategy GEOHASH_PREFIX_TREE
public static final SpatialOptions.SpatialSearchStrategy QUAD_PREFIX_TREE
public static final SpatialOptions.SpatialSearchStrategy BOUNDING_BOX
public static SpatialOptions.SpatialSearchStrategy[] values()
for (SpatialOptions.SpatialSearchStrategy c : SpatialOptions.SpatialSearchStrategy.values()) System.out.println(c);
public static SpatialOptions.SpatialSearchStrategy 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 © 2016. All Rights Reserved.