public enum GridIndexType extends Enum<GridIndexType>
| Enum Constant and Description |
|---|
FULLTEXT
Fulltext index.
|
GEO_SPATIAL
Spatial SQL index.
|
SORTED
Sorted SQL index.
|
| Modifier and Type | Method and Description |
|---|---|
static GridIndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridIndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridIndexType SORTED
public static final GridIndexType GEO_SPATIAL
public static final GridIndexType FULLTEXT
public static GridIndexType[] values()
for (GridIndexType c : GridIndexType.values()) System.out.println(c);
public static GridIndexType 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 © 2014. All rights reserved.