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

Packages that use DiskBiGramDictionary
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 DiskBiGramDictionary in com.sun.labs.minion.indexer.dictionary
 

Fields in com.sun.labs.minion.indexer.dictionary declared as DiskBiGramDictionary
protected  DiskBiGramDictionary BasicField.bigrams
          A bigram dictionary that we can use for character fields.
 

Methods in com.sun.labs.minion.indexer.dictionary that return DiskBiGramDictionary
 DiskBiGramDictionary DictionaryFactory.getBiGramDictionary(DiskDictionary mainDict, java.io.RandomAccessFile dictFile, java.io.RandomAccessFile postFile, DiskPartition part)
          Gets a bigram dictionary.
 

Methods in com.sun.labs.minion.indexer.dictionary with parameters of type DiskBiGramDictionary
 QueryEntry[] DiskDictionary.getMatching(DiskBiGramDictionary biDict, java.lang.String pat, boolean caseSensitive, int maxEntries, long timeLimit)
          Gets the entries matching the given pattern from the given dictionary.
 QueryEntry[] DiskDictionary.getSpellingVariants(DiskBiGramDictionary biDict, java.lang.String word, boolean caseSensitive, int maxEntries, long timeLimit)
          Gets the list of possible spelling corrections, based on terms in the index, for the string that is passed in.
 QueryEntry[] DiskDictionary.getStemMatches(DiskBiGramDictionary biDict, java.lang.String term, boolean caseSensitive, int minLen, float matchCutOff, int maxEntries, long timeLimit)
          Gets a set of all the entries with the given stem
 QueryEntry[] DiskDictionary.getSubstring(DiskBiGramDictionary biDict, java.lang.String substring, boolean caseSensitive, boolean starts, boolean ends, int maxEntries, long timeLimit)
          Gets the entries matching the given pattern from the given dictionary.
 void DiskBiGramDictionary.merge(DiskBiGramDictionary[] dicts, int[] starts, int[][] postIDMaps, java.io.RandomAccessFile mDictFile, PostingsOutput postOut)
           
 

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

Fields in com.sun.labs.minion.indexer.partition declared as DiskBiGramDictionary
protected  DiskBiGramDictionary InvFileDiskPartition.bigramDict
          Bigrams from the main dictionary.