|
GemFire 7.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.gemstone.gemfire.cache.query.IndexType
QueryService
for changes.
Enumerated type for types of indexes
public class IndexType
Field Summary | |
---|---|
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. |
Method Summary | |
---|---|
String |
toString()
Deprecated. Return the index type as a String |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
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
QueryService.createIndex(String, IndexType, String, String)
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
QueryService.createIndex(String, IndexType, String, String)
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.
QueryService.createIndex(String, IndexType, String, String)
Method Detail |
---|
public String toString()
toString
in class Object
|
GemFire 7.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |