public interface HGOrderedSearchable<KeyType,ValueType> extends HGSearchable<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.
Modifier and Type | Method and Description |
---|---|
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.
|
find
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.Copyright © 2015. All rights reserved.