Package | Description |
---|---|
messif.buckets.index |
Bucket indexes for improved access.
|
messif.buckets.index.impl |
Implementation of bucket indexes.
|
messif.buckets.storage |
Bucket physical storage support.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ModifiableSearch<T>
Represents a modifiable search.
|
Modifier and Type | Field and Description |
---|---|
protected Search<T> |
SearchAbstractObjectIterator.search
Wrapped search instance
|
Modifier and Type | Method and Description |
---|---|
Search<T> |
Search.clone()
Creates and returns a copy of this search.
|
Search<T> |
Index.search()
Returns a search for all objects in this index.
|
Search<T> |
OrderedIndex.search(C key,
boolean restrictEqual)
Returns a search for objects in this index using the internal
OrderedIndex.comparator() of this index. |
Search<T> |
OrderedIndex.search(C from,
C to)
Returns a search for objects in this index using the internal
OrderedIndex.comparator() of this index. |
Search<T> |
OrderedIndex.search(C startKey,
C from,
C to)
Returns a search for objects in this index using the internal
OrderedIndex.comparator() of this index. |
Search<T> |
OrderedIndex.search(java.util.Collection<? extends C> keys)
Returns a search for objects in this index using the internal
OrderedIndex.comparator() of this index. |
<C> Search<T> |
Index.search(IndexComparator<? super C,? super T> comparator,
C key)
Returns a search for objects in this index that have any of the specified keys.
|
<C> Search<T> |
Index.search(IndexComparator<? super C,? super T> comparator,
C from,
C to)
Returns a search for objects in this index that are within the specified key-range.
|
<C> Search<T> |
Index.search(IndexComparator<? super C,? super T> comparator,
java.util.Collection<? extends C> keys)
Returns a search for objects in this index that have any of the specified keys.
|
Constructor and Description |
---|
SearchAbstractObjectDualIterator(Search<T> search)
Creates a new instance of SearchAbstractObjectIterator for the specified
Search instance. |
SearchAbstractObjectDualIterator(Search<T> search,
int limit)
Creates a new instance of SearchAbstractObjectIterator for the specified
Search instance. |
SearchAbstractObjectIterator(Search<T> search)
Creates a new instance of SearchAbstractObjectIterator for the specified
Search instance. |
SearchAbstractObjectIterator(Search<T> search,
int limit)
Creates a new instance of SearchAbstractObjectIterator for the specified
Search instance. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractSearch<C,T>
This class represents a search on an index.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IntStorageSearch<T>
This interface represents a
ModifiableSearch that supports getting
IntStorage 's address of the found object. |
interface |
LongStorageSearch<T>
This interface represents a
ModifiableSearch that supports getting
LongStorage 's address of the found object. |
interface |
StorageSearch<T>
This interface represents a
ModifiableSearch that supports getting
Storage 's address of the found object. |