Uses of Class
org.apache.lucene.index.Terms
-
Packages that use Terms Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices.org.apache.lucene.util.automaton Finite-state automaton for regular expressions. -
-
Uses of Terms in org.apache.lucene.codecs
Subclasses of Terms in org.apache.lucene.codecs Modifier and Type Class Description class
BlockTreeTermsReader.FieldReader
BlockTree's implementation ofTerms
.Methods in org.apache.lucene.codecs that return Terms Modifier and Type Method Description Terms
BlockTreeTermsReader. terms(String field)
-
Uses of Terms in org.apache.lucene.index
Subclasses of Terms in org.apache.lucene.index Modifier and Type Class Description static class
FilterAtomicReader.FilterTerms
Base class for filteringTerms
implementations.class
MultiTerms
Exposes flex API, merged from flex API of sub-segments.Fields in org.apache.lucene.index declared as Terms Modifier and Type Field Description static Terms[]
Terms. EMPTY_ARRAY
Zero-length array ofTerms
.protected Terms
FilterAtomicReader.FilterTerms. in
The underlying Terms instance.Methods in org.apache.lucene.index that return Terms Modifier and Type Method Description static Terms
MultiFields. getTerms(IndexReader r, String field)
This method may return null if the field does not exist.Terms
IndexReader. getTermVector(int docID, String field)
Retrieve term vector for this document and field, or null if term vectors were not indexed.Terms
AtomicReader. terms(String field)
This may return null if the field does not exist.abstract Terms
Fields. terms(String field)
Get theTerms
for this field.Terms
FilterAtomicReader.FilterFields. terms(String field)
Terms
MultiFields. terms(String field)
Constructors in org.apache.lucene.index with parameters of type Terms Constructor Description FilterTerms(Terms in)
Creates a new FilterTermsMultiTerms(Terms[] subs, ReaderSlice[] subSlices)
Sole constructor. -
Uses of Terms in org.apache.lucene.search
Fields in org.apache.lucene.search declared as Terms Modifier and Type Field Description protected Terms
FuzzyTermsEnum. terms
Methods in org.apache.lucene.search with parameters of type Terms Modifier and Type Method Description protected TermsEnum
AutomatonQuery. getTermsEnum(Terms terms, AttributeSource atts)
protected TermsEnum
FuzzyQuery. getTermsEnum(Terms terms, AttributeSource atts)
protected TermsEnum
MultiTermQuery. getTermsEnum(Terms terms)
Convenience method, if no attributes are needed: This simply passes empty attributes and is equal to:getTermsEnum(terms, new AttributeSource())
protected abstract TermsEnum
MultiTermQuery. getTermsEnum(Terms terms, AttributeSource atts)
Construct the enumeration to be used, expanding the pattern term.protected TermsEnum
MultiTermQuery.RewriteMethod. getTermsEnum(MultiTermQuery query, Terms terms, AttributeSource atts)
Returns theMultiTermQuery
sTermsEnum
protected TermsEnum
NumericRangeQuery. getTermsEnum(Terms terms, AttributeSource atts)
protected TermsEnum
PrefixQuery. getTermsEnum(Terms terms, AttributeSource atts)
protected TermsEnum
TermRangeQuery. getTermsEnum(Terms terms, AttributeSource atts)
TermsEnum
FieldCache.Parser. termsEnum(Terms terms)
Constructors in org.apache.lucene.search with parameters of type Terms Constructor Description FuzzyTermsEnum(Terms terms, AttributeSource atts, Term term, float minSimilarity, int prefixLength, boolean transpositions)
Constructor for enumeration of all terms from specifiedreader
which share a prefix of lengthprefixLength
withterm
and which have a fuzzy similarity >minSimilarity
. -
Uses of Terms in org.apache.lucene.util.automaton
Methods in org.apache.lucene.util.automaton with parameters of type Terms Modifier and Type Method Description TermsEnum
CompiledAutomaton. getTermsEnum(Terms terms)
-