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. 
gate.creole.annic.lucene   
 

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

Fields in gate.creole.annic.apache.lucene.index declared as Term
(package private)  Term[] TermInfosReader.indexTerms
           
private  Term TermInfosWriter.lastTerm
           
(package private)  Term SegmentTermEnum.prev
           
(package private)  Term Posting.term
           
private  Term MultiTermEnum.term
           
protected  Term MultiTermDocs.term
           
(package private)  Term SegmentMergeInfo.term
           
private  Term SegmentTermEnum.term
           
private  Term DocumentWriter.termBuffer
           
 

Methods in gate.creole.annic.apache.lucene.index that return Term
(package private)  Term TermInfosReader.get(int position)
          Returns the nth term in the set.
private  Term SegmentTermEnum.readTerm()
           
private  Term TermInfosReader.scanEnum(int position)
           
 Term FilterIndexReader.FilterTermEnum.term()
           
 Term MultiTermEnum.term()
           
 Term SegmentTermEnum.term()
          Returns the current Term in the enumeration.
abstract  Term TermEnum.term()
          Returns the current Term in the enumeration.
 

Methods in gate.creole.annic.apache.lucene.index with parameters of type Term
(package private)  void TermInfosWriter.add(Term term, TermInfo ti)
          Adds a new pair to the set.
 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 SegmentReader.docFreq(Term t)
           
(package private)  TermInfo TermInfosReader.get(Term term)
          Returns the TermInfo for a Term in the set, or null.
private  int TermInfosReader.getIndexOffset(Term term)
          Returns the offset of the greatest index entry which is less than or equal to term.
(package private)  long TermInfosReader.getPosition(Term term)
          Returns the position of a Term in the set or -1.
 int Term.indexCompareTo(Term other)
           
private  TermInfo TermInfosReader.scanEnum(Term term)
          Scans within block for matching term.
(package private)  void SegmentTermEnum.seek(long pointer, int p, Term t, TermInfo ti)
           
 void FilterIndexReader.FilterTermDocs.seek(Term term)
           
 void MultiTermDocs.seek(Term term)
           
 void MultipleTermPositions.seek(Term arg0)
          Describe seek method here.
 void SegmentTermDocs.seek(Term term)
           
 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)
           
 TermEnum SegmentReader.terms(Term t)
           
 SegmentTermEnum TermInfosReader.terms(Term term)
          Returns an enumeration of terms starting at or after the named term.
private  void TermInfosWriter.writeTerm(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.
MultiTermEnum(IndexReader[] readers, int[] starts, Term t)
           
Posting(Term t, int position)
           
 

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

Fields in gate.creole.annic.apache.lucene.search declared as Term
private  Term TermQuery.term
           
private  Term TermScorer.term
           
 

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.
TermScorer(Weight weight, TermDocs td, Similarity similarity, byte[] norms, Term term)
           
 

Uses of Term in gate.creole.annic.lucene
 

Methods in gate.creole.annic.lucene with parameters of type Term
private  boolean QueryParser.isBaseTokenTerm(Term t)
          Returns true if the provided Term is a based token term.
private  boolean PatternValidator.isEqual(Token tk, Term term)
          Checks whether two terms are equal.