anl.aida.core
Interface MIFSTerm

All Known Implementing Classes:
STCBuilder.TermImpl

public interface MIFSTerm

Term interface for terms in a ScoredTermsCollection. The term data is for the collection in which the term is part.


Method Summary
 int getDocumentCount()
          Gets the number of documents this term appears in.
 int getMaxFrequency()
          Gets the maximum frequency count of this term across all documents in the collection.
 float getMaxScore()
          Gets the maximum score of this term across all documents in the collection.
 int getMinFrequency()
          Gets the minimum frequency count of this term across all documents in the collection.
 float getMinScore()
          Gets the minimum score of this term across all documents in the collection.
 java.lang.String getText()
          Gets the text of this term.
 

Method Detail

getDocumentCount

int getDocumentCount()
Gets the number of documents this term appears in.

Returns:
number of documents this term appears in.

getMinScore

float getMinScore()
Gets the minimum score of this term across all documents in the collection.

Returns:
the minimum score of this term across all documents.

getMaxScore

float getMaxScore()
Gets the maximum score of this term across all documents in the collection.

Returns:
the maximum score of this term across all documents.

getMinFrequency

int getMinFrequency()
Gets the minimum frequency count of this term across all documents in the collection.

Returns:
the minimum frequency count of this term across all documents.

getMaxFrequency

int getMaxFrequency()
Gets the maximum frequency count of this term across all documents in the collection.

Returns:
the maximum frequency count of this term across all documents.

getText

java.lang.String getText()
Gets the text of this term.

Returns:
the text of this term.