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 classBlockTreeTermsReader.FieldReaderBlockTree's implementation ofTerms.Methods in org.apache.lucene.codecs that return Terms Modifier and Type Method Description TermsBlockTreeTermsReader. 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 classFilterAtomicReader.FilterTermsBase class for filteringTermsimplementations.classMultiTermsExposes 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_ARRAYZero-length array ofTerms.protected TermsFilterAtomicReader.FilterTerms. inThe underlying Terms instance.Methods in org.apache.lucene.index that return Terms Modifier and Type Method Description static TermsMultiFields. getTerms(IndexReader r, String field)This method may return null if the field does not exist.TermsIndexReader. getTermVector(int docID, String field)Retrieve term vector for this document and field, or null if term vectors were not indexed.TermsAtomicReader. terms(String field)This may return null if the field does not exist.abstract TermsFields. terms(String field)Get theTermsfor this field.TermsFilterAtomicReader.FilterFields. terms(String field)TermsMultiFields. 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 TermsFuzzyTermsEnum. termsMethods in org.apache.lucene.search with parameters of type Terms Modifier and Type Method Description protected TermsEnumAutomatonQuery. getTermsEnum(Terms terms, AttributeSource atts)protected TermsEnumFuzzyQuery. getTermsEnum(Terms terms, AttributeSource atts)protected TermsEnumMultiTermQuery. 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 TermsEnumMultiTermQuery. getTermsEnum(Terms terms, AttributeSource atts)Construct the enumeration to be used, expanding the pattern term.protected TermsEnumMultiTermQuery.RewriteMethod. getTermsEnum(MultiTermQuery query, Terms terms, AttributeSource atts)Returns theMultiTermQuerysTermsEnumprotected TermsEnumNumericRangeQuery. getTermsEnum(Terms terms, AttributeSource atts)protected TermsEnumPrefixQuery. getTermsEnum(Terms terms, AttributeSource atts)protected TermsEnumTermRangeQuery. getTermsEnum(Terms terms, AttributeSource atts)TermsEnumFieldCache.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 specifiedreaderwhich share a prefix of lengthprefixLengthwithtermand 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 TermsEnumCompiledAutomaton. getTermsEnum(Terms terms)
-