Uses of Interface
org.egothor.core.IListReader

Packages that use IListReader
org.egothor.cache Provides classes that help implementing a cache for the egothor project. 
org.egothor.core This package concentrates the core data objects and interfaces. 
org.egothor.core.memory This package contains an implementation of barrels in memory. 
org.egothor.dir This package defines objects of distributed IR layer. 
org.egothor.dockyard   
org.egothor.merger This package defines a machinery that merges many BarrelReaders. 
org.egothor.robot.index   
org.egothor.slotter This package is responsible for management of arrays of DynStruct objects. 
org.egothor.store This package contains an implementation of barrels on a hard disk. 
org.egothor.util   
 

Uses of IListReader in org.egothor.cache
 

Classes in org.egothor.cache that implement IListReader
 class CachedIListReader
          Represents a IListReader implementation that uses a cache to retrieve posting lists.
 

Methods in org.egothor.cache that return IListReader
 IListReader CachedRider.openIList(Barrel barrel, java.lang.String term)
          Gets a cached inverted list reader for the specified barrel and term.
 

Uses of IListReader in org.egothor.core
 

Classes in org.egothor.core that implement IListReader
 class IListRemapper
          This object remaps the document uids to new values in the inverted list.
 class IListShadow
          A IListShadow envelopes underlaying inverted list.
 class IListWasher
          A IListWasher excludes some tuples from underlaying inverted list.
 

Methods in org.egothor.core that return IListReader
 IListReader Barrel.openIList(java.lang.String term, boolean clean)
          Open the inverted list of term for reading.
 

Methods in org.egothor.core that return types with arguments of type IListReader
 SequenceWithClose<IListReader> BarrelReader.getILists()
          Returns an enumeration of all inverted lists.
 

Methods in org.egothor.core with parameters of type IListReader
 void IListShadow.setSource(IListReader source)
          Sets the source attribute of the IListWasher object
 

Constructors in org.egothor.core with parameters of type IListReader
IListRemapper(IListReader orig)
          Constructor for the Remapper object.
IListWasher(IListReader ilr)
          Constructor for the IListWasher object
 

Uses of IListReader in org.egothor.core.memory
 

Classes in org.egothor.core.memory that implement IListReader
 class MemoryIList
          The MemoryIList class is an inverted list stored to memory.
 

Methods in org.egothor.core.memory that return IListReader
 IListReader Document.openIList(java.lang.String term, boolean clean)
          Opens the IListReader of the given term.
 IListReader MemoryBarrel.openIList(java.lang.String term, boolean clean)
          Return an IListReader that can read the inverted list constructed for the given term.
 

Methods in org.egothor.core.memory that return types with arguments of type IListReader
 SequenceWithClose<IListReader> Document.getILists()
          Return all inverted lists in A-Z order of terms.
 SequenceWithClose<IListReader> MemoryBarrel.getILists()
          Return the inverted lists in this Barrel.
 

Methods in org.egothor.core.memory with parameters of type IListReader
protected  void MemoryBarrel.appendIList(IListReader il, long remap)
          Append a new inverted list.
 

Uses of IListReader in org.egothor.dir
 

Methods in org.egothor.dir that return IListReader
 IListReader Group.openIList(java.lang.String term, boolean clean)
          Open the inverted list constructed for the given term for reading.
 IListReader TankerImplSecure.openIList(java.lang.String term, boolean clean)
          Deprecated. 
 IListReader TankerImplSecure.openIListSecure(java.lang.String term, boolean clean)
          Opens IList reader using secure multithreading safe way.
 

Uses of IListReader in org.egothor.dockyard
 

Methods in org.egothor.dockyard that return types with arguments of type IListReader
 SequenceWithClose<IListReader> StreamReader.getILists()
           
 

Uses of IListReader in org.egothor.merger
 

Classes in org.egothor.merger that implement IListReader
 class ConcatListReader
          A ConcatIListReader is a collection (array) of IListReaders.
 class ConcatLists
          A ConcatIListReader is some collection (array) of IListReaders.
 

Methods in org.egothor.merger that return types with arguments of type IListReader
 SequenceWithClose<IListReader> Merge.getILists()
          Return an enumeration of IListReaders.
 

Methods in org.egothor.merger with parameters of type IListReader
 void ConcatListReader.add(long off, IListReader ilr)
          Add the given inverted list at the given position in this ConcatListReader.
 

Uses of IListReader in org.egothor.robot.index
 

Methods in org.egothor.robot.index that return types with arguments of type IListReader
 SequenceWithClose<IListReader> ThickFastIn.getILists()
          Returns an enumeration of inverted lists.
 

Methods in org.egothor.robot.index with parameters of type IListReader
 void ThickFastOut.appendIList(long max_len, IListReader il)
          Appends the given inverted list to this Barrel.
 

Uses of IListReader in org.egothor.slotter
 

Methods in org.egothor.slotter that return IListReader
 IListReader BarrelShadow.openIList(java.lang.String term, boolean clean)
          Open the inverted list of term for reading.
 

Uses of IListReader in org.egothor.store
 

Classes in org.egothor.store that implement IListReader
 class IListMetadataRead
           
 

Methods in org.egothor.store that return IListReader
 IListReader IListMetadataRead.getNew(DataInputStream ils_dta, ProximitiesFileIn prox, boolean closeable)
           
 IListReader ThickBarrel.openIList(java.lang.String term, boolean clean)
          Description of the Method
 

Methods in org.egothor.store that return types with arguments of type IListReader
 SequenceWithClose<IListReader> ThickBarrelIn.getILists()
          Returns an enumeration of inverted lists.
 

Methods in org.egothor.store with parameters of type IListReader
 void ThickBarrelOut.appendIList(long max_len, IListReader il)
          Appends the given inverted list to this Barrel.
 

Uses of IListReader in org.egothor.util
 

Methods in org.egothor.util that return IListReader
 IListReader Bitmap.getIListReader(java.lang.String term)