Uses of Class
gate.creole.annic.apache.lucene.index.Term

Packages that use Term
gate.creole.annic.apache.lucene.index Code to maintain and access indices. 
gate.creole.annic.apache.lucene.search Search over indices. 
 

Uses of Term in gate.creole.annic.apache.lucene.index
 

Methods in gate.creole.annic.apache.lucene.index that return Term
 Term FilterIndexReader.FilterTermEnum.term()
           
abstract  Term TermEnum.term()
          Returns the current Term in the enumeration.
 

Methods in gate.creole.annic.apache.lucene.index with parameters of type Term
 int Term.compareTo(Term other)
          Compares two terms, returning an integer which is less than zero iff this term belongs after the argument, equal zero iff this term is equal to the argument, and greater than zero iff this term belongs after the argument.
 int IndexReader.delete(Term term)
          Deletes all documents containing term.
 int FilterIndexReader.docFreq(Term t)
           
abstract  int IndexReader.docFreq(Term t)
          Returns the number of documents containing the term t.
 int MultiReader.docFreq(Term t)
           
 int Term.indexCompareTo(Term other)
           
 void FilterIndexReader.FilterTermDocs.seek(Term term)
           
 void MultipleTermPositions.seek(Term arg0)
          Describe seek method here.
 void TermDocs.seek(Term term)
          Sets this to the data for a term.
 boolean TermEnum.skipTo(Term target)
          Skips terms to the first beyond the current whose value is greater or equal to target.
 TermDocs IndexReader.termDocs(Term term)
          Returns an enumeration of all the documents which contain term.
 TermPositions IndexReader.termPositions(Term term)
          Returns an enumeration of all the documents which contain term.
 TermEnum FilterIndexReader.terms(Term t)
           
abstract  TermEnum IndexReader.terms(Term t)
          Returns an enumeration of all terms after a given term.
 TermEnum MultiReader.terms(Term term)
           
 

Constructors in gate.creole.annic.apache.lucene.index with parameters of type Term
MultipleTermPositions(IndexReader indexReader, Term[] terms)
          Creates a new MultipleTermPositions instance.
 

Uses of Term in gate.creole.annic.apache.lucene.search
 

Methods in gate.creole.annic.apache.lucene.search that return Term
 Term TermQuery.getTerm()
          Returns the term of this query.
 Term[] PhraseQuery.getTerms()
          Returns the set of terms in this phrase.
 

Methods in gate.creole.annic.apache.lucene.search with parameters of type Term
 void PhraseQuery.add(Term term)
           
 void PhraseQuery.add(Term term, Integer position, boolean considerAsATerm)
          Adds a term to the end of the query phrase.
 int IndexSearcher.docFreq(Term term)
           
 int Searchable.docFreq(Term term)
          Expert: Returns the number of documents containing term.
 float Similarity.idf(Term term, Searcher searcher)
          Computes a score factor for a simple term.
 

Constructors in gate.creole.annic.apache.lucene.search with parameters of type Term
TermQuery(Term t)
          Constructs a query for the term t.