public interface ForwardIndex
| Modifier and Type | Method and Description |
|---|---|
String |
getEQ(String keyName,
Object keyEQ,
ResultType resType)
Gets the key and value pairs where keys are equal the input key.
|
String |
getGE(String keyName,
Object key,
ResultType resType)
Gets the key and value pairs where keys are GE the input key.
|
String |
getGEandLE(String keyName,
Object keyGE,
Object keyLE,
ResultType resType)
Gets the key and value pairs where keys are GE the input key1
and LE the input key2.
|
String |
getGEandLT(String keyName,
Object keyGE,
Object keyLT,
ResultType resType)
Gets the key and value pairs where keys are GE the input key1
and LT the input key2.
|
String |
getGT(String keyName,
Object key,
ResultType resType)
Gets the key and value pairs where keys are GT the input key.
|
String |
getGTandLE(String keyName,
Object keyGT,
Object keyLE,
ResultType resType)
Gets the key and value pairs where keys are GT the input key1
and LE the input key2.
|
String |
getGTandLT(String keyName,
Object keyGT,
Object keyLT,
ResultType resType)
Gets the key and value pairs where keys are GT the input key1.
|
String |
getLE(String keyName,
Object keyLE,
ResultType resType)
Gets the key and value pairs where keys are LE the input key.
|
String |
getLT(String keyName,
Object keyLT,
ResultType resType)
Gets the key and value pairs where keys are LT the input key.
|
String getEQ(String keyName, Object keyEQ, ResultType resType) throws IndexException
keyEQ - - contains the ley.bKeysOnly - return only keys, or full tuples?IndexException - in case of failure.String getGE(String keyName, Object key, ResultType resType) throws IndexException
key - The key to search for.bKeysOnly - return only keys, or full tuples?IndexException - Exception thrown in case of failure.String getGT(String keyName, Object key, ResultType resType) throws IndexException
key - The key to search for.bKeysOnly - return only keys, or full tuples?IndexException - Exception thrown in case of failure.String getLT(String keyName, Object keyLT, ResultType resType) throws IndexException
keyLT - - contains the key.bKeysOnly - return only keys, or full tuples?IndexException - Exception thrown in case of failure.String getLE(String keyName, Object keyLE, ResultType resType) throws IndexException
keyLE - The key to search for.bKeysOnly - return only keys, or full tuples?IndexException - Exception thrown in case of failure.String getGTandLT(String keyName, Object keyGT, Object keyLT, ResultType resType) throws IndexException
keyGT - The key to search for res > key.keyLT - The key to search for res < key.bKeysOnly - return only keys, or full tuples?IndexException - Thrown in case of failure.String getGEandLT(String keyName, Object keyGE, Object keyLT, ResultType resType) throws IndexException
keyGE - The key to search for res >= key.keyLT - The key to search for res < key.bKeysOnly - return only keys, or full tuples?IndexException - Thrown in the case of failure.String getGTandLE(String keyName, Object keyGT, Object keyLE, ResultType resType) throws IndexException
keyGT - The key to search for res > key.keyLE - The key to search for res <= key.bKeysOnly - return only keys, or full tuples?IndexException - Thrown in the case of failure.String getGEandLE(String keyName, Object keyGE, Object keyLE, ResultType resType) throws IndexException
keyGE - The key to search for res >= key.keyLE - The key to search for res <= key.bKeysOnly - return only keys, or full tuples?IndexException - Thrown in the case of failure.Copyright © 2014. All Rights Reserved.