|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Term | |
org.apache.lucene.index | Code to maintain and access indices. |
org.apache.lucene.search | Search over indices. |
org.apache.lucene.search.spans | The calculus of spans. |
Uses of Term in org.apache.lucene.index |
Methods in org.apache.lucene.index that return Term | |
abstract Term |
TermEnum.term()
Returns the current Term in the enumeration. |
Term |
FilterIndexReader.FilterTermEnum.term()
|
Methods in org.apache.lucene.index with parameters of type Term | |
boolean |
TermEnum.skipTo(Term target)
Skips terms to the first beyond the current whose value is greater or equal to target. |
void |
TermDocs.seek(Term term)
Sets this to the data for a 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. |
void |
MultipleTermPositions.seek(Term arg0)
Describe seek method here. |
TermEnum |
MultiReader.terms(Term term)
|
int |
MultiReader.docFreq(Term t)
|
abstract TermEnum |
IndexReader.terms(Term t)
Returns an enumeration of all terms after a given term. |
abstract int |
IndexReader.docFreq(Term t)
Returns the number of documents containing the term t . |
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 . |
int |
IndexReader.delete(Term term)
Deletes all documents containing term . |
TermEnum |
FilterIndexReader.terms(Term t)
|
int |
FilterIndexReader.docFreq(Term t)
|
void |
FilterIndexReader.FilterTermDocs.seek(Term term)
|
Constructors in org.apache.lucene.index with parameters of type Term | |
MultipleTermPositions(IndexReader indexReader,
Term[] terms)
Creates a new MultipleTermPositions instance. |
Uses of Term in org.apache.lucene.search |
Methods in org.apache.lucene.search that return Term | |
Term |
TermQuery.getTerm()
Returns the term of this query. |
Term |
RangeQuery.getLowerTerm()
Returns the lower term of this range query |
Term |
RangeQuery.getUpperTerm()
Returns the upper term of this range query |
Term |
PrefixQuery.getPrefix()
Returns the prefix of this query. |
Term[] |
PhraseQuery.getTerms()
Returns the set of terms in this phrase. |
Term |
MultiTermQuery.getTerm()
Returns the pattern term. |
Term |
FilteredTermEnum.term()
Returns the current Term in the enumeration. |
Methods in org.apache.lucene.search with parameters of type Term | |
protected boolean |
WildcardTermEnum.termCompare(Term term)
|
float |
Similarity.idf(Term term,
Searcher searcher)
Computes a score factor for a simple term. |
int |
Searchable.docFreq(Term term)
Expert: Returns the number of documents containing term . |
int |
RemoteSearchable.docFreq(Term term)
|
void |
PhraseQuery.add(Term term)
Adds a term to the end of the query phrase. |
void |
PhrasePrefixQuery.add(Term term)
|
void |
PhrasePrefixQuery.add(Term[] terms)
|
int |
ParallelMultiSearcher.docFreq(Term term)
TODO: parallelize this one too |
int |
MultiSearcher.docFreq(Term term)
|
int |
IndexSearcher.docFreq(Term term)
|
protected boolean |
FuzzyTermEnum.termCompare(Term term)
The termCompare method in FuzzyTermEnum uses Levenshtein distance to calculate the distance between the given term and the comparing term. |
protected abstract boolean |
FilteredTermEnum.termCompare(Term term)
Equality compare on the term |
Constructors in org.apache.lucene.search with parameters of type Term | |
WildcardTermEnum(IndexReader reader,
Term term)
Creates a new WildcardTermEnum . |
|
WildcardQuery(Term term)
|
|
TermQuery(Term t)
Constructs a query for the term t . |
|
RangeQuery(Term lowerTerm,
Term upperTerm,
boolean inclusive)
Constructs a query selecting all terms greater than lowerTerm but less than upperTerm . |
|
PrefixQuery(Term prefix)
Constructs a query for terms starting with prefix . |
|
MultiTermQuery(Term term)
Constructs a query for terms matching term . |
|
FuzzyTermEnum(IndexReader reader,
Term term)
|
|
FuzzyQuery(Term term)
|
Uses of Term in org.apache.lucene.search.spans |
Methods in org.apache.lucene.search.spans that return Term | |
Term |
SpanTermQuery.getTerm()
Return the term whose spans are matched. |
Constructors in org.apache.lucene.search.spans with parameters of type Term | |
SpanTermQuery(Term term)
Construct a SpanTermQuery matching the named term's spans. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |