QueryService
for changes.
Enumerated type for types of indexespublic class IndexType
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static IndexType |
FUNCTIONAL
Deprecated.
The index type of a functional index.
|
static IndexType |
HASH
Deprecated.
The index type of a hash index.
|
static IndexType |
PRIMARY_KEY
Deprecated.
The index type of a primary key index.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Deprecated.
Return the index type as a String
|
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.