|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface HGOrderedSearchable<KeyType,ValueType>
The HGOrderedSearchable interface specifies that an object can be
viewed as an ordered collection from where a range of values can be obtained
based on a key and comparison operator.
| Method Summary | |
|---|---|
HGSearchResult<ValueType> |
findGT(KeyType key)
Return a range of all values strictly greater than the specified key. |
HGSearchResult<ValueType> |
findGTE(KeyType key)
Return a range of all values greater than or equal to the specified key. |
HGSearchResult<ValueType> |
findLT(KeyType key)
Return a range of all values strictly less than the specified key. |
HGSearchResult<ValueType> |
findLTE(KeyType key)
Return a range of all values less than or equal to the specified key. |
| Methods inherited from interface org.hypergraphdb.HGSearchable |
|---|
find |
| Method Detail |
|---|
HGSearchResult<ValueType> findLT(KeyType key)
Return a range of all values strictly less than the specified key.
key - The search key.
HGSearchResult over the resulting range of values.HGSearchResult<ValueType> findGT(KeyType key)
Return a range of all values strictly greater than the specified key.
key - The search key.
HGSearchResult over the resulting range of values.HGSearchResult<ValueType> findLTE(KeyType key)
Return a range of all values less than or equal to the specified key.
key - The search key.
HGSearchResult over the resulting range of values.HGSearchResult<ValueType> findGTE(KeyType key)
Return a range of all values greater than or equal to the specified key.
key - The search key.
HGSearchResult over the resulting range of values.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||