Uses of Class
org.apache.lucene.index.Term
-
Packages that use Term Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices.org.apache.lucene.search.spans The calculus of spans.org.apache.lucene.util Some utility classes.org.apache.lucene.util.graph Utility classes for working with token streams as graphs. -
-
Uses of Term in org.apache.lucene.index
Methods in org.apache.lucene.index with parameters of type Term Modifier and Type Method Description voidPrefixCodedTerms.Builder. add(Term term)add a termstatic TermContextTermContext. build(IndexReaderContext context, Term term)intTerm. compareTo(Term other)Compares two terms, returning a negative integer if this term belongs before the argument, zero if this term is equal to the argument, and a positive integer if this term belongs after the argument.longIndexWriter. deleteDocuments(Term... terms)Deletes the document(s) containing any of the terms.intBaseCompositeReader. docFreq(Term term)abstract intIndexReader. docFreq(Term term)Returns the number of documents containing theterm.intLeafReader. docFreq(Term term)PostingsEnumLeafReader. postings(Term term)ReturnsPostingsEnumfor the specified term withPostingsEnum.FREQS.PostingsEnumLeafReader. postings(Term term, int flags)ReturnsPostingsEnumfor the specified term.longIndexWriter. softUpdateDocument(Term term, Iterable<? extends IndexableField> doc, Field... softDeletes)Expert: Updates a document by first updating the document(s) containingtermwith the given doc-values fields and then adding the new document.longIndexWriter. softUpdateDocuments(Term term, Iterable<? extends Iterable<? extends IndexableField>> docs, Field... softDeletes)Expert: Atomically updates documents matching the provided term with the given doc-values fields and adds a block of documents with sequentially assigned document IDs, such that an external reader will see all or none of the documents.longBaseCompositeReader. totalTermFreq(Term term)abstract longIndexReader. totalTermFreq(Term term)Returns the total number of occurrences oftermacross all documents (the sum of the freq() for each doc that has this term).longLeafReader. totalTermFreq(Term term)Returns the number of documents containing the termt.longIndexWriter. updateBinaryDocValue(Term term, String field, BytesRef value)longIndexWriter. updateDocument(Term term, Iterable<? extends IndexableField> doc)Updates a document by first deleting the document(s) containingtermand then adding the new document.longIndexWriter. updateDocuments(Term delTerm, Iterable<? extends Iterable<? extends IndexableField>> docs)Atomically deletes documents matching the provided delTerm and adds a block of documents with sequentially assigned document IDs, such that an external reader will see all or none of the documents.longIndexWriter. updateDocValues(Term term, Field... updates)Updates documents' DocValues fields to the given values.longIndexWriter. updateNumericDocValue(Term term, String field, long value) -
Uses of Term in org.apache.lucene.search
Fields in org.apache.lucene.search declared as Term Modifier and Type Field Description protected TermAutomatonQuery. termterm containing the field, and possibly some pattern structureMethods in org.apache.lucene.search that return Term Modifier and Type Method Description TermPrefixQuery. getPrefix()Returns the prefix of this query.TermRegexpQuery. getRegexp()Returns the regexp of this query wrapped in a Term.TermFuzzyQuery. getTerm()Returns the pattern term.TermTermQuery. getTerm()Returns the term of this query.TermWildcardQuery. getTerm()Returns the pattern term.Term[][]MultiPhraseQuery. getTermArrays()Returns the arrays of arrays of terms in the multi-phrase.Term[]NGramPhraseQuery. getTerms()Return the list of terms.Term[]PhraseQuery. getTerms()Returns the list of terms in this phrase.Methods in org.apache.lucene.search that return types with arguments of type Term Modifier and Type Method Description List<Term>SynonymQuery. getTerms()Methods in org.apache.lucene.search with parameters of type Term Modifier and Type Method Description BlendedTermQuery.BuilderBlendedTermQuery.Builder. add(Term term)Add a newTermto this builder, with a default boost of1.BlendedTermQuery.BuilderBlendedTermQuery.Builder. add(Term term, float boost)Add aTermwith the provided boost.BlendedTermQuery.BuilderBlendedTermQuery.Builder. add(Term term, float boost, TermContext context)Expert: Add aTermwith the provided boost and context.MultiPhraseQuery.BuilderMultiPhraseQuery.Builder. add(Term term)Add a single term at the next position in the phrase.MultiPhraseQuery.BuilderMultiPhraseQuery.Builder. add(Term[] terms)Add multiple terms at the next position in the phrase.MultiPhraseQuery.BuilderMultiPhraseQuery.Builder. add(Term[] terms, int position)Allows to specify the relative position of terms within the phrase.PhraseQuery.BuilderPhraseQuery.Builder. add(Term term)Adds a term to the end of the query phrase.PhraseQuery.BuilderPhraseQuery.Builder. add(Term term, int position)Adds a term to the end of the query phrase.protected voidMultiTermQuery.TopTermsBlendedFreqScoringRewrite. addClause(BlendedTermQuery.Builder topLevel, Term term, int docCount, float boost, TermContext states)protected voidMultiTermQuery.TopTermsBoostOnlyBooleanQueryRewrite. addClause(BooleanQuery.Builder topLevel, Term term, int docFreq, float boost, TermContext states)protected voidMultiTermQuery.TopTermsScoringBooleanQueryRewrite. addClause(BooleanQuery.Builder topLevel, Term term, int docCount, float boost, TermContext states)TermStatisticsIndexSearcher. termStatistics(Term term, TermContext context)ReturnsTermStatisticsfor a term.static AutomatonWildcardQuery. toAutomaton(Term wildcardquery)Convert Lucene wildcard syntax into an automaton.Method parameters in org.apache.lucene.search with type arguments of type Term Modifier and Type Method Description voidConstantScoreWeight. extractTerms(Set<Term> terms)voidDisjunctionMaxQuery.DisjunctionMaxWeight. extractTerms(Set<Term> terms)voidFilterWeight. extractTerms(Set<Term> terms)abstract voidWeight. extractTerms(Set<Term> terms)Expert: adds all terms occurring in this query to the terms set.Constructors in org.apache.lucene.search with parameters of type Term Constructor Description AutomatonQuery(Term term, Automaton automaton)Create a new AutomatonQuery from anAutomaton.AutomatonQuery(Term term, Automaton automaton, int maxDeterminizedStates)Create a new AutomatonQuery from anAutomaton.AutomatonQuery(Term term, Automaton automaton, int maxDeterminizedStates, boolean isBinary)Create a new AutomatonQuery from anAutomaton.FuzzyQuery(Term term)FuzzyQuery(Term term, int maxEdits)FuzzyQuery(Term term, int maxEdits, int prefixLength)FuzzyQuery(Term term, int maxEdits, int prefixLength, int maxExpansions, boolean transpositions)Create a new FuzzyQuery that will match terms with an edit distance of at mostmaxEditstoterm.FuzzyTermsEnum(Terms terms, AttributeSource atts, Term term, int maxEdits, int prefixLength, boolean transpositions)Constructor for enumeration of all terms from specifiedreaderwhich share a prefix of lengthprefixLengthwithtermand which have at mostmaxEditsedits.PrefixQuery(Term prefix)Constructs a query for terms starting withprefix.RegexpQuery(Term term)Constructs a query for terms matchingterm.RegexpQuery(Term term, int flags)Constructs a query for terms matchingterm.RegexpQuery(Term term, int flags, int maxDeterminizedStates)Constructs a query for terms matchingterm.RegexpQuery(Term term, int flags, AutomatonProvider provider, int maxDeterminizedStates)Constructs a query for terms matchingterm.SynonymQuery(Term... terms)Creates a new SynonymQuery, matching any of the supplied terms.TermQuery(Term t)Constructs a query for the termt.TermQuery(Term t, TermContext states)Expert: constructs a TermQuery that will use the provided docFreq instead of looking up the docFreq against the searcher.WildcardQuery(Term term)Constructs a query for terms matchingterm.WildcardQuery(Term term, int maxDeterminizedStates)Constructs a query for terms matchingterm. -
Uses of Term in org.apache.lucene.search.spans
Fields in org.apache.lucene.search.spans declared as Term Modifier and Type Field Description protected TermSpanTermQuery. termprotected TermTermSpans. termMethods in org.apache.lucene.search.spans that return Term Modifier and Type Method Description TermSpanTermQuery. getTerm()Return the term whose spans are matched.Methods in org.apache.lucene.search.spans that return types with arguments of type Term Modifier and Type Method Description static Map<Term,TermContext>SpanQuery. getTermContexts(Collection<SpanWeight> weights)Build a map of terms to termcontexts, for use in constructing SpanWeightsstatic Map<Term,TermContext>SpanQuery. getTermContexts(SpanWeight... weights)Build a map of terms to termcontexts, for use in constructing SpanWeightsMethods in org.apache.lucene.search.spans with parameters of type Term Modifier and Type Method Description voidSpanCollector. collectLeaf(PostingsEnum postings, int position, Term term)Collect information from postingsMethod parameters in org.apache.lucene.search.spans with type arguments of type Term Modifier and Type Method Description voidSpanNearQuery.SpanNearWeight. extractTermContexts(Map<Term,TermContext> contexts)voidSpanNotQuery.SpanNotWeight. extractTermContexts(Map<Term,TermContext> contexts)voidSpanOrQuery.SpanOrWeight. extractTermContexts(Map<Term,TermContext> contexts)voidSpanPositionCheckQuery.SpanPositionCheckWeight. extractTermContexts(Map<Term,TermContext> contexts)voidSpanTermQuery.SpanTermWeight. extractTermContexts(Map<Term,TermContext> contexts)abstract voidSpanWeight. extractTermContexts(Map<Term,TermContext> contexts)Collect all TermContexts used by this WeightvoidSpanNearQuery.SpanNearWeight. extractTerms(Set<Term> terms)voidSpanNotQuery.SpanNotWeight. extractTerms(Set<Term> terms)voidSpanOrQuery.SpanOrWeight. extractTerms(Set<Term> terms)voidSpanPositionCheckQuery.SpanPositionCheckWeight. extractTerms(Set<Term> terms)voidSpanTermQuery.SpanTermWeight. extractTerms(Set<Term> terms)Constructors in org.apache.lucene.search.spans with parameters of type Term Constructor Description SpanTermQuery(Term term)Construct a SpanTermQuery matching the named term's spans.SpanTermQuery(Term term, TermContext context)Expert: Construct a SpanTermQuery matching the named term's spans, using the provided TermContextTermSpans(Similarity.SimScorer scorer, PostingsEnum postings, Term term, float positionsCost)Constructor parameters in org.apache.lucene.search.spans with type arguments of type Term Constructor Description SpanContainingWeight(IndexSearcher searcher, Map<Term,TermContext> terms, SpanWeight bigWeight, SpanWeight littleWeight, float boost)SpanNearWeight(List<SpanWeight> subWeights, IndexSearcher searcher, Map<Term,TermContext> terms, float boost)SpanNotWeight(IndexSearcher searcher, Map<Term,TermContext> terms, SpanWeight includeWeight, SpanWeight excludeWeight, float boost)SpanOrWeight(IndexSearcher searcher, Map<Term,TermContext> terms, List<SpanWeight> subWeights, float boost)SpanPositionCheckWeight(SpanWeight matchWeight, IndexSearcher searcher, Map<Term,TermContext> terms, float boost)SpanTermWeight(TermContext termContext, IndexSearcher searcher, Map<Term,TermContext> terms, float boost)SpanWeight(SpanQuery query, IndexSearcher searcher, Map<Term,TermContext> termContexts, float boost)Create a new SpanWeightSpanWithinWeight(IndexSearcher searcher, Map<Term,TermContext> terms, SpanWeight bigWeight, SpanWeight littleWeight, float boost) -
Uses of Term in org.apache.lucene.util
Methods in org.apache.lucene.util with parameters of type Term Modifier and Type Method Description protected QueryQueryBuilder. newSynonymQuery(Term[] terms)Builds a new SynonymQuery instance.protected QueryQueryBuilder. newTermQuery(Term term)Builds a new TermQuery instance.Method parameters in org.apache.lucene.util with type arguments of type Term Modifier and Type Method Description protected voidQueryBuilder. add(BooleanQuery.Builder q, List<Term> current, BooleanClause.Occur operator) -
Uses of Term in org.apache.lucene.util.graph
Methods in org.apache.lucene.util.graph that return Term Modifier and Type Method Description Term[]GraphTokenStreamFiniteStrings. getTerms(String field, int state)Returns the list of terms that start at the provided state
-