Uses of Interface
com.sun.labs.minion.indexer.postings.Occurrence

Packages that use Occurrence
com.sun.labs.minion.classification Provides the automatic document classification functionality in Minion. 
com.sun.labs.minion.indexer.entry Provides the interfaces and implemenations for the entries used during indexing and querying. 
com.sun.labs.minion.indexer.postings Provides the classes that implement the different types of postings used by the search engine. 
com.sun.labs.minion.lextax   
com.sun.labs.minion.pipeline Provides the classes for building a pipeline. 
 

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

Subinterfaces of Occurrence in com.sun.labs.minion.classification
 interface Feature
          An interface for the features defined by classifiers.
 

Classes in com.sun.labs.minion.classification that implement Occurrence
 class ContingencyFeature
          A weighted feature class that contains a 2x2 contingency table that can be used to calculate the Mutual Information or Chi-squared measures.
 class WeightedFeature
           
 

Methods in com.sun.labs.minion.classification with parameters of type Occurrence
 void FeaturePostings.add(Occurrence o)
          Adds an occurrence to the postings list.
 

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

Methods in com.sun.labs.minion.indexer.entry with parameters of type Occurrence
 void CasedEntry.add(Occurrence o)
          Adds an occurrence to this index entry.
 void IndexEntry.add(Occurrence o)
          Adds an occurrence to this index entry.
 void SinglePostingsEntry.add(Occurrence o)
          Adds an occurrence at indexing time.
 void TermStatsEntry.add(Occurrence o)
           
protected  void CasedEntry.add(Occurrence o, int pos)
          Adds an occurrence to the postings at a given position.
 void CasedDFOEntry.addCaseInsensitive(Occurrence o)
          Adds an occurrence to the case insensitive postings for this entry.
 void CasedIDEntry.addCaseInsensitive(Occurrence o)
          Adds an occurrence to the case insensitive postings for this entry.
 void CasedPostingsEntry.addCaseInsensitive(Occurrence o)
          Adds an occurrence to our case insensitive postings.
 void CasedDFOEntry.addCaseSensitive(Occurrence o)
          Adds an occurrence to the case sensitive postings for this entry.
 void CasedIDEntry.addCaseSensitive(Occurrence o)
          Adds an occurrence to the case sensitive postings for this entry.
 void CasedPostingsEntry.addCaseSensitive(Occurrence o)
          Adds an occurrence to our case sensitive postings.
 

Uses of Occurrence in com.sun.labs.minion.indexer.postings
 

Subinterfaces of Occurrence in com.sun.labs.minion.indexer.postings
 interface FieldOccurrence
          A interface for occurrence data that takes into account the fields and the position where the occurrence was found.
 

Classes in com.sun.labs.minion.indexer.postings that implement Occurrence
 class DocOccurrence
          An occurrence to use for document dictionaries.
 class OccurrenceImpl
          A class that handles simple, ID only occurrences.
 class WeightedOccurrence
           
 

Methods in com.sun.labs.minion.indexer.postings with parameters of type Occurrence
 void DFOPostings.add(Occurrence o)
          Adds an occurrence to the postings list.
 void DocumentVectorPostings.add(Occurrence o)
          Adds an occurrence to the postings.
 void FieldedDocumentVectorPostings.add(Occurrence o)
           
 void IDFreqPostings.add(Occurrence o)
          Adds an occurrence to the postings list.
 void IDPostings.add(Occurrence o)
          Adds an occurrence to the postings list.
 void IDWPostings.add(Occurrence o)
           
 void Postings.add(Occurrence o)
          Adds an occurrence to the postings list.
 

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

Methods in com.sun.labs.minion.lextax with parameters of type Occurrence
 void ConceptEntry.add(Occurrence o)
           
 

Uses of Occurrence in com.sun.labs.minion.pipeline
 

Classes in com.sun.labs.minion.pipeline that implement Occurrence
 class Token
          A class encapsulating all of our knowledge about a given token.