Uses of Interface
messif.buckets.index.ModifiableSearch

Packages that use ModifiableSearch
messif.buckets.impl Bucket implementations. 
messif.buckets.index Bucket indexes for improved access. 
messif.buckets.index.impl Implementation of bucket indexes. 
messif.buckets.storage Bucket physical storage support. 
 

Uses of ModifiableSearch in messif.buckets.impl
 

Methods in messif.buckets.impl that return ModifiableSearch
 ModifiableSearch<LocalAbstractObject> AlgorithmStorageBucket.search()
           
<C> ModifiableSearch<LocalAbstractObject>
AlgorithmStorageBucket.search(IndexComparator<? super C,? super LocalAbstractObject> comparator, C key)
           
<C> ModifiableSearch<LocalAbstractObject>
AlgorithmStorageBucket.search(IndexComparator<? super C,? super LocalAbstractObject> comparator, C from, C to)
           
<C> ModifiableSearch<LocalAbstractObject>
AlgorithmStorageBucket.search(IndexComparator<? super C,? super LocalAbstractObject> comparator, java.util.Collection<? extends C> keys)
           
 

Uses of ModifiableSearch in messif.buckets.index
 

Methods in messif.buckets.index that return ModifiableSearch
 ModifiableSearch<T> ModifiableIndex.search()
           
 ModifiableSearch<T> ModifiableOrderedIndex.search(C key, boolean restrictEqual)
           
 ModifiableSearch<T> ModifiableOrderedIndex.search(C from, C to)
           
 ModifiableSearch<T> ModifiableOrderedIndex.search(C startKey, C from, C to)
           
 ModifiableSearch<T> ModifiableOrderedIndex.search(java.util.Collection<? extends C> keys)
           
<C> ModifiableSearch<T>
ModifiableIndex.search(IndexComparator<? super C,? super T> comparator, C key)
           
<C> ModifiableSearch<T>
ModifiableIndex.search(IndexComparator<? super C,? super T> comparator, C from, C to)
           
<C> ModifiableSearch<T>
ModifiableIndex.search(IndexComparator<? super C,? super T> comparator, java.util.Collection<? extends C> keys)
           
 

Uses of ModifiableSearch in messif.buckets.index.impl
 

Methods in messif.buckets.index.impl that return ModifiableSearch
 ModifiableSearch<T> AbstractArrayIndex.search()
           
 ModifiableSearch<T> AbstractArrayIndex.search(java.util.Collection<? extends K> keys)
           
<C> ModifiableSearch<T>
AbstractArrayIndex.search(IndexComparator<? super C,? super T> comparator, C key)
           
<C> ModifiableSearch<T>
AbstractArrayIndex.search(IndexComparator<? super C,? super T> comparator, C from, C to)
           
<C> ModifiableSearch<T>
AbstractArrayIndex.search(IndexComparator<? super C,? super T> comparator, java.util.Collection<? extends C> keys)
           
 ModifiableSearch<T> AbstractArrayIndex.search(K key, boolean restrictEqual)
           
 ModifiableSearch<T> AbstractArrayIndex.search(K from, K to)
           
 ModifiableSearch<T> AbstractArrayIndex.search(K startKey, K from, K to)
           
 

Uses of ModifiableSearch in messif.buckets.storage
 

Subinterfaces of ModifiableSearch in messif.buckets.storage
 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.