Class Intervals
java.lang.Object
org.apache.lucene.queries.intervals.Intervals
Constructor functions for
IntervalsSource types
These sources implement minimum-interval algorithms taken from the paper
Efficient Optimally Lazy Algorithms for Minimal-Interval Semantics
By default, sources that are sensitive to internal gaps (e.g. PHRASE and MAXGAPS) will
rewrite their sub-sources so that disjunctions of different lengths are pulled up
to the top of the interval tree. For example, PHRASE(or(PHRASE("a", "b", "c"), "b"), "c")
will automatically rewrite itself to OR(PHRASE("a", "b", "c", "c"), PHRASE("b", "c"))
to ensure that documents containing "b c" are matched. This can lead to less efficient
queries, as more terms need to be loaded (for example, the "c" iterator above is loaded
twice), so if you care more about speed than about accuracy you can use the
or(boolean, IntervalsSource...) factory method to prevent rewriting.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic IntervalsSourceafter(IntervalsSource source, IntervalsSource reference) Returns intervals from the source that appear after intervals from the referencestatic IntervalsSourceatLeast(int minShouldMatch, IntervalsSource... sources) Return intervals that span combinations of intervals fromminShouldMatchof the sourcesstatic IntervalsSourcebefore(IntervalsSource source, IntervalsSource reference) Returns intervals from the source that appear before intervals from the referencestatic IntervalsSourcecontainedBy(IntervalsSource small, IntervalsSource big) Create a contained-byIntervalsSourceReturns intervals from the small query that appear within intervals of the big querystatic IntervalsSourcecontaining(IntervalsSource big, IntervalsSource small) Create a containingIntervalsSourceReturns intervals from the big source that contain one or more intervals from the small sourcestatic IntervalsSourceextend(IntervalsSource source, int before, int after) Create anIntervalsSourcethat wraps another source, extending its intervals by a number of positions before and after.static IntervalsSourcefixField(String field, IntervalsSource source) Create anIntervalsSourcethat always returns intervals from a specific field This is useful for comparing intervals across multiple fields, for example fields that have been analyzed differently, allowing you to search for stemmed terms near unstemmed terms, etc.static IntervalsSourcemaxgaps(int gaps, IntervalsSource subSource) Create anIntervalsSourcethat filters a sub-source by its gapsstatic IntervalsSourcemaxwidth(int width, IntervalsSource subSource) Create anIntervalsSourcethat filters a sub-source by the width of its intervalsstatic IntervalsSourceDeprecated.static IntervalsSourceDeprecated.static IntervalsSourcemultiterm(CompiledAutomaton ca, int maxExpansions, String pattern) Expert: Return anIntervalsSourceover the disjunction of all terms that's accepted by the given automaton WARNING: SettingmaxExpansionsto higher than the default value of 128 can be both slow and memory-intensivestatic IntervalsSourcemultiterm(CompiledAutomaton ca, String pattern) Expert: Return anIntervalsSourceover the disjunction of all terms that's accepted by the given automatonstatic IntervalsSourcenonOverlapping(IntervalsSource minuend, IntervalsSource subtrahend) Create a non-overlapping IntervalsSource Returns intervals of the minuend that do not overlap with intervals from the subtrahendstatic IntervalsSourcenotContainedBy(IntervalsSource small, IntervalsSource big) Create a not-contained-byIntervalsSourceReturns intervals from the smallIntervalsSourcethat do not appear within intervals from the bigIntervalsSource.static IntervalsSourcenotContaining(IntervalsSource minuend, IntervalsSource subtrahend) Create a not-containingIntervalsSourceReturns intervals from the minuend that do not contain intervals of the subtrahendstatic IntervalsSourcenotWithin(IntervalsSource minuend, int positions, IntervalsSource subtrahend) Create a not-withinIntervalsSourceReturns intervals of the minuend that do not appear within a set number of positions of intervals from the subtrahend querystatic IntervalsSourceor(boolean rewrite, List<IntervalsSource> subSources) Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceor(boolean rewrite, IntervalsSource... subSources) Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceor(List<IntervalsSource> subSources) Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceor(IntervalsSource... subSources) Return anIntervalsSourceover the disjunction of a set of sub-sources Automatically rewrites if wrapped by an interval source that is sensitive to internal gapsstatic IntervalsSourceordered(IntervalsSource... subSources) Create an orderedIntervalsSourceReturns intervals in which the subsources all appear in the given orderstatic IntervalsSourceoverlapping(IntervalsSource source, IntervalsSource reference) Returns intervals from a source that overlap with intervals from another sourcestatic IntervalsSourceReturn anIntervalsSourceexposing intervals for a phrase consisting of a list of termsstatic IntervalsSourcephrase(IntervalsSource... subSources) Return anIntervalsSourceexposing intervals for a phrase consisting of a list of IntervalsSourcesstatic IntervalsSourceReturn anIntervalsSourceover the disjunction of all terms that begin with a prefixstatic IntervalsSourceExpert: Return anIntervalsSourceover the disjunction of all terms that begin with a prefix WARNING: SettingmaxExpansionsto higher than the default value of 128 can be both slow and memory-intensivestatic IntervalsSourceReturn anIntervalsSourceexposing intervals for a termstatic IntervalsSourceReturn anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each positionstatic IntervalsSourceReturn anIntervalsSourceexposing intervals for a termstatic IntervalsSourceReturn anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each positionstatic IntervalsSourceunordered(IntervalsSource... subSources) Create an unorderedIntervalsSourceReturns intervals in which all the subsources appear.static IntervalsSourceCreate an unorderedIntervalsSourceallowing no overlaps between subsources Returns intervals in which both the subsources appear and do not overlap.static IntervalsSourceReturn anIntervalsSourceover the disjunction of all terms that match a wildcard globstatic IntervalsSourceExpert: Return anIntervalsSourceover the disjunction of all terms that match a wildcard glob WARNING: SettingmaxExpansionsto higher than the default value of 128 can be both slow and memory-intensivestatic IntervalsSourcewithin(IntervalsSource source, int positions, IntervalsSource reference) Returns intervals of the source that appear within a set number of positions of intervals from the reference
-
Constructor Details
-
Intervals
private Intervals()
-
-
Method Details
-
term
Return anIntervalsSourceexposing intervals for a term -
term
Return anIntervalsSourceexposing intervals for a term -
term
Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each position -
term
Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each position -
phrase
Return anIntervalsSourceexposing intervals for a phrase consisting of a list of terms -
phrase
Return anIntervalsSourceexposing intervals for a phrase consisting of a list of IntervalsSources -
or
Return anIntervalsSourceover the disjunction of a set of sub-sources Automatically rewrites if wrapped by an interval source that is sensitive to internal gaps -
or
Return anIntervalsSourceover the disjunction of a set of sub-sources- Parameters:
rewrite- iffalse, do not rewrite intervals that are sensitive to internal gaps; this may run more efficiently, but can miss valid hits due to minimizationsubSources- the sources to combine
-
or
Return anIntervalsSourceover the disjunction of a set of sub-sources -
or
Return anIntervalsSourceover the disjunction of a set of sub-sources- Parameters:
rewrite- iffalse, do not rewrite intervals that are sensitive to internal gaps; this may run more efficiently, but can miss valid hits due to minimizationsubSources- the sources to combine
-
prefix
Return anIntervalsSourceover the disjunction of all terms that begin with a prefix- Throws:
IllegalStateException- if the prefix expands to more than 128 terms
-
prefix
Expert: Return anIntervalsSourceover the disjunction of all terms that begin with a prefix WARNING: SettingmaxExpansionsto higher than the default value of 128 can be both slow and memory-intensive- Parameters:
prefix- the prefix to expandmaxExpansions- the maximum number of terms to expand to- Throws:
IllegalStateException- if the prefix expands to more thanmaxExpansionsterms
-
wildcard
Return anIntervalsSourceover the disjunction of all terms that match a wildcard glob- Throws:
IllegalStateException- if the wildcard glob expands to more than 128 terms- See Also:
-
wildcard
Expert: Return anIntervalsSourceover the disjunction of all terms that match a wildcard glob WARNING: SettingmaxExpansionsto higher than the default value of 128 can be both slow and memory-intensive- Parameters:
wildcard- the glob to expandmaxExpansions- the maximum number of terms to expand to- Throws:
IllegalStateException- if the wildcard glob expands to more thanmaxExpansionsterms- See Also:
-
multiterm
Deprecated.Expert: Return anIntervalsSourceover the disjunction of all terms that's accepted by the given automaton- Parameters:
automaton- accepts terms for to expand topattern- string representation of the given automaton, mostly used in exception messages- Throws:
IllegalStateException- if the automaton accepts more than 128 terms
-
multiterm
@Deprecated public static IntervalsSource multiterm(Automaton automaton, int maxExpansions, String pattern) Deprecated.Expert: Return anIntervalsSourceover the disjunction of all terms that's accepted by the given automaton WARNING: SettingmaxExpansionsto higher than the default value of 128 can be both slow and memory-intensive- Parameters:
automaton- accepts terms for to expand tomaxExpansions- the maximum number of terms to expand topattern- string representation of the given automaton, mostly used in exception messages- Throws:
IllegalStateException- if the automaton accepts more thanmaxExpansionsterms
-
multiterm
Expert: Return anIntervalsSourceover the disjunction of all terms that's accepted by the given automaton- Parameters:
ca- an automaton accepting matching termspattern- string representation of the given automaton, mostly used in exception messages- Throws:
IllegalStateException- if the automaton accepts more than 128 terms
-
multiterm
Expert: Return anIntervalsSourceover the disjunction of all terms that's accepted by the given automaton WARNING: SettingmaxExpansionsto higher than the default value of 128 can be both slow and memory-intensive- Parameters:
ca- an automaton accepting matching termsmaxExpansions- the maximum number of terms to expand topattern- string representation of the given automaton, mostly used in exception messages- Throws:
IllegalStateException- if the automaton accepts more thanmaxExpansionsterms
-
maxwidth
Create anIntervalsSourcethat filters a sub-source by the width of its intervals- Parameters:
width- the maximum width of intervals in the sub-source to filtersubSource- the sub-source to filter
-
maxgaps
Create anIntervalsSourcethat filters a sub-source by its gaps- Parameters:
gaps- the maximum number of gaps in the sub-source to filtersubSource- the sub-source to filter
-
extend
Create anIntervalsSourcethat wraps another source, extending its intervals by a number of positions before and after. This can be useful for adding defined gaps in a block query; for example, to find 'a b [2 arbitrary terms] c', you can call:Intervals.phrase(Intervals.term("a"), Intervals.extend(Intervals.term("b"), 0, 2), Intervals.term("c"));Note that callingIntervalIterator.gaps()on iterators returned by this source delegates directly to the wrapped iterator, and does not include the extensions.- Parameters:
source- the source to extendbefore- how many positions to extend before the delegated intervalafter- how many positions to extend after the delegated interval
-
ordered
Create an orderedIntervalsSourceReturns intervals in which the subsources all appear in the given order- Parameters:
subSources- an ordered set ofIntervalsSourceobjects
-
unordered
Create an unorderedIntervalsSourceReturns intervals in which all the subsources appear. The subsources may overlap- Parameters:
subSources- an unordered set ofIntervalsSources
-
unorderedNoOverlaps
Create an unorderedIntervalsSourceallowing no overlaps between subsources Returns intervals in which both the subsources appear and do not overlap. -
fixField
Create anIntervalsSourcethat always returns intervals from a specific field This is useful for comparing intervals across multiple fields, for example fields that have been analyzed differently, allowing you to search for stemmed terms near unstemmed terms, etc. -
nonOverlapping
Create a non-overlapping IntervalsSource Returns intervals of the minuend that do not overlap with intervals from the subtrahend- Parameters:
minuend- theIntervalsSourceto filtersubtrahend- theIntervalsSourceto filter by
-
overlapping
Returns intervals from a source that overlap with intervals from another source- Parameters:
source- the source to filterreference- the source to filter by
-
notWithin
public static IntervalsSource notWithin(IntervalsSource minuend, int positions, IntervalsSource subtrahend) Create a not-withinIntervalsSourceReturns intervals of the minuend that do not appear within a set number of positions of intervals from the subtrahend query- Parameters:
minuend- theIntervalsSourceto filterpositions- the minimum distance that intervals from the minuend may occur from intervals of the subtrahendsubtrahend- theIntervalsSourceto filter by
-
within
public static IntervalsSource within(IntervalsSource source, int positions, IntervalsSource reference) Returns intervals of the source that appear within a set number of positions of intervals from the reference- Parameters:
source- theIntervalsSourceto filterpositions- the maximum distance that intervals of the source may occur from intervals of the referencereference- theIntervalsSourceto filter by
-
notContaining
Create a not-containingIntervalsSourceReturns intervals from the minuend that do not contain intervals of the subtrahend- Parameters:
minuend- theIntervalsSourceto filtersubtrahend- theIntervalsSourceto filter by
-
containing
Create a containingIntervalsSourceReturns intervals from the big source that contain one or more intervals from the small source- Parameters:
big- theIntervalsSourceto filtersmall- theIntervalsSourceto filter by
-
notContainedBy
Create a not-contained-byIntervalsSourceReturns intervals from the smallIntervalsSourcethat do not appear within intervals from the bigIntervalsSource.- Parameters:
small- theIntervalsSourceto filterbig- theIntervalsSourceto filter by
-
containedBy
Create a contained-byIntervalsSourceReturns intervals from the small query that appear within intervals of the big query- Parameters:
small- theIntervalsSourceto filterbig- theIntervalsSourceto filter by
-
atLeast
Return intervals that span combinations of intervals fromminShouldMatchof the sources -
before
Returns intervals from the source that appear before intervals from the reference -
after
Returns intervals from the source that appear after intervals from the reference
-
multiterm(CompiledAutomaton, int, String)