Uses of Class
com.sun.labs.minion.indexer.partition.Partition

Packages that use Partition
com.sun.labs.minion.classification Provides the automatic document classification functionality in Minion. 
com.sun.labs.minion.indexer.dictionary Provides the classes that implement the dictionaries used by the indexer and the retrieval engine. 
com.sun.labs.minion.indexer.entry Provides the interfaces and implemenations for the entries used during indexing and querying. 
com.sun.labs.minion.indexer.partition Provides the classes that implement the partitions of the indexer. 
com.sun.labs.minion.lextax   
 

Uses of Partition in com.sun.labs.minion.classification
 

Subclasses of Partition in com.sun.labs.minion.classification
 class ClassifierDiskPartition
          A disk partition that will hold classifier data.
 class ClassifierMemoryPartition
          A memory partition that will hold classifier data.
 class ClusterDiskPartition
          A disk partition that will hold classifier data.
 class ClusterMemoryPartition
          A memory partition that will hold classifier data.
 

Uses of Partition in com.sun.labs.minion.indexer.dictionary
 

Fields in com.sun.labs.minion.indexer.dictionary declared as Partition
protected  Partition DiskDictionary.part
          The partition that we are associated with.
protected  Partition MemoryDictionary.part
          The partition with which this dictionary is associated.
 

Methods in com.sun.labs.minion.indexer.dictionary that return Partition
 Partition Dictionary.getPartition()
          Gets the partition to which this dictionary belongs.
 Partition DiskDictionary.getPartition()
          Gets the partition to which this dictionary belongs.
 Partition MemoryDictionary.getPartition()
          Gets the partition to which this dictionary belongs.
 

Methods in com.sun.labs.minion.indexer.dictionary with parameters of type Partition
 MemoryDictionary DictionaryFactory.getMemoryDictionary(Partition p)
           
 void DiskDictionary.setPartition(Partition p)
          Sets the partition with which this dictionary is associated
 void MemoryDictionary.setPartition(Partition partition)
           
 

Constructors in com.sun.labs.minion.indexer.dictionary with parameters of type Partition
CachedDiskDictionary(java.lang.Class entryClass, NameDecoder decoder, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, int postInType, int nameBufferSize, int offsetsBufferSize, int infoBufferSize, int infoOffsetsBufferSize, Partition part)
          Creates a disk dictionary that we can use for querying.
CachedDiskDictionary(java.lang.Class entryClass, NameDecoder decoder, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, int postInType, Partition part)
          Creates a disk dictionary that we can use for querying.
CachedDiskDictionary(java.lang.Class entryClass, NameDecoder decoder, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, Partition part)
          Creates a disk dictionary that we can use for querying.
DiskBiGramDictionary(java.io.RandomAccessFile dictFile, java.io.RandomAccessFile postFile, int postInType, int cacheSize, int nameBufferSize, int offsetsBufferSize, int infoBufferSize, int infoOffsetsBufferSize, Partition part, DiskDictionary mainDict)
           
DiskDictionary(java.lang.Class entryClass, NameDecoder decoder, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, int postInType, int cacheSize, int nameBufferSize, int offsetsBufferSize, int infoBufferSize, int infoOffsetsBufferSize, Partition part)
          Creates a disk dictionary that we can use for querying.
DiskDictionary(java.lang.Class entryClass, NameDecoder decoder, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, int postInType, Partition part)
          Creates a disk dictionary that we can use for querying.
DiskDictionary(java.lang.Class entryClass, NameDecoder decoder, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, Partition part)
          Creates a disk dictionary that we can use for querying.
 

Uses of Partition in com.sun.labs.minion.indexer.entry
 

Methods in com.sun.labs.minion.indexer.entry that return Partition
 Partition BaseEntry.getPartition()
          Gets the partition from which this entry was drawn.
 Partition Entry.getPartition()
          Gets the partition that this entry was drawn from.
 

Uses of Partition in com.sun.labs.minion.indexer.partition
 

Subclasses of Partition in com.sun.labs.minion.indexer.partition
 class DiskPartition
          A partition of the index which is resident on the disk and suitable for querying.
 class InvFileDiskPartition
          A disk partition that holds data that is specific to the implementation of an inverted file.
 class InvFileMemoryPartition
           
 class MemoryPartition
          A class for holding a partition in memory while it is under construction.
 

Methods in com.sun.labs.minion.indexer.partition with parameters of type Partition
 int Partition.compareTo(Partition p)
          Compares two partitions by their partition numbers.
 void DelMap.setPartition(Partition part)
           
 

Uses of Partition in com.sun.labs.minion.lextax
 

Methods in com.sun.labs.minion.lextax that return Partition
 Partition ConceptEntry.getPartition()