Uses of Class
com.sun.labs.minion.indexer.dictionary.DictionaryFactory

Packages that use DictionaryFactory
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.partition Provides the classes that implement the partitions of the indexer. 
 

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

Constructors in com.sun.labs.minion.classification with parameters of type DictionaryFactory
ClassifierDiskPartition(java.lang.Integer partNum, ClassifierManager manager, DictionaryFactory mainDictFactory, DictionaryFactory documentDictFactory)
          Constructs a disk partition for a specific partition number.
ClusterDiskPartition(java.lang.Integer partNum, ClusterManager manager, DictionaryFactory mainDictFactory, DictionaryFactory documentDictFactory)
          Constructs a disk partition for a specific partition number.
 

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

Methods in com.sun.labs.minion.indexer.dictionary with parameters of type DictionaryFactory
protected  SavedField DiskFieldStore.makeSavedField(FieldInfo fi, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, DictionaryFactory fieldStoreDictFactory, DictionaryFactory bigramDictFactory, DiskPartition part)
          Makes a saved field instance of the appropriate type.
 

Constructors in com.sun.labs.minion.indexer.dictionary with parameters of type DictionaryFactory
BasicField(FieldInfo field, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, DictionaryFactory fieldStoreDictFactory, DictionaryFactory bigramDictFactory, DiskPartition part)
          Constructs a saved field that will be used to retrieve data during querying.
DiskFieldStore(DiskPartition part, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile[] postFiles, DictionaryFactory fieldStoreDictFactory, DictionaryFactory bigramDictFactory, MetaFile metaFile)
          Reads the field store from the provided file.
 

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

Fields in com.sun.labs.minion.indexer.partition declared as DictionaryFactory
protected  DictionaryFactory InvFileDiskPartition.bigramDictFactory
          A factory for bigram dictionaries that will be used by the main dictioanry and by the field store.
protected  DictionaryFactory Partition.docDictFactory
           
protected  DictionaryFactory DiskPartition.documentDictFactory
          A factory for the document dictionary.
protected  DictionaryFactory DiskPartitionFactory.documentDictFactory
          The document dictionary factory.
protected  DictionaryFactory InvFileDiskPartition.fieldStoreDictFactory
          A factory for the dictionaries that the field store will use for saved field values.
protected  DictionaryFactory DiskPartitionFactory.mainDictFactory
          The main dictionary factory.
protected  DictionaryFactory Partition.mainDictFactory
           
 

Constructors in com.sun.labs.minion.indexer.partition with parameters of type DictionaryFactory
DiskPartition(int partNumber, PartitionManager manager, DictionaryFactory mainDictFactory, DictionaryFactory documentDictFactory)
          Opens a partition with a given number
DiskPartition(int partNumber, PartitionManager manager, DictionaryFactory mainDictFactory, DictionaryFactory documentDictFactory, boolean cacheVectorLengths, int termCacheSize)
          Opens a partition with a given number
InvFileDiskPartition(int partNumber, PartitionManager manager, DictionaryFactory mainDictFactory, DictionaryFactory documentDictFactory, DictionaryFactory fieldStoreDictFactory, DictionaryFactory bigramDictFactory, boolean cacheVectorLengths, int termCacheSize)
          Opens a partition with a given number