QueryService
for changes.
Enumerated type for types of indexespublic enum IndexType extends java.lang.Enum<IndexType>
Enum Constant and Description |
---|
FUNCTIONAL
Deprecated.
The index type of a functional index.
|
HASH
Deprecated.
The index type of a hash index.
|
PRIMARY_KEY
Deprecated.
The index type of a primary key index.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Deprecated.
|
static IndexType |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static IndexType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexType FUNCTIONAL
The indexedExpression for a functional index can be any Comparable or any of the following
primitive types:
long int short byte char float double
public static final IndexType HASH
The indexedExpression for a hash index can be any Comparable or any of the following primitive
types:
long int short byte char float double
public static final IndexType PRIMARY_KEY
The type of the indexedExpression for a primary key index can be any object type. Just as in a
Region, the lookup is based on the implementation of the equals
and
hashCode
methods in the object.
public static IndexType[] values()
for (IndexType c : IndexType.values()) System.out.println(c);
public static IndexType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getName()