Class Intervals
- java.lang.Object
-
- org.apache.lucene.queries.intervals.Intervals
-
public final class Intervals extends Object
Constructor functions forIntervalsSourcetypesThese 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.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static 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-byIntervalsSourcestatic IntervalsSourcecontaining(IntervalsSource big, IntervalsSource small)Create a containingIntervalsSourcestatic 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 fieldstatic 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 IntervalsSourcemultiterm(CompiledAutomaton ca, int maxExpansions, String pattern)Expert: Return anIntervalsSourceover the disjunction of all terms that are accepted by the given automatonstatic IntervalsSourcemultiterm(CompiledAutomaton ca, String pattern)Expert: Return anIntervalsSourceover the disjunction of all terms that are accepted by the given automatonstatic IntervalsSourcenonOverlapping(IntervalsSource minuend, IntervalsSource subtrahend)Create a non-overlapping IntervalsSourcestatic IntervalsSourcenotContainedBy(IntervalsSource small, IntervalsSource big)Create a not-contained-byIntervalsSourcestatic IntervalsSourcenotContaining(IntervalsSource minuend, IntervalsSource subtrahend)Create a not-containingIntervalsSourcestatic IntervalsSourcenotWithin(IntervalsSource minuend, int positions, IntervalsSource subtrahend)Create a not-withinIntervalsSourcestatic 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-sourcesstatic IntervalsSourceordered(IntervalsSource... subSources)Create an orderedIntervalsSourcestatic IntervalsSourceoverlapping(IntervalsSource source, IntervalsSource reference)Returns intervals from a source that overlap with intervals from another sourcestatic IntervalsSourcephrase(String... terms)Return 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 IntervalsSourceprefix(BytesRef prefix)Return anIntervalsSourceover the disjunction of all terms that begin with a prefixstatic IntervalsSourceprefix(BytesRef prefix, int maxExpansions)Expert: Return anIntervalsSourceover the disjunction of all terms that begin with a prefixstatic IntervalsSourceterm(String term)Return anIntervalsSourceexposing intervals for a termstatic IntervalsSourceterm(String term, Predicate<BytesRef> payloadFilter)Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each positionstatic IntervalsSourceterm(BytesRef term)Return anIntervalsSourceexposing intervals for a termstatic IntervalsSourceterm(BytesRef term, Predicate<BytesRef> payloadFilter)Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each positionstatic IntervalsSourceunordered(IntervalsSource... subSources)Create an unorderedIntervalsSourcestatic IntervalsSourceunorderedNoOverlaps(IntervalsSource a, IntervalsSource b)Create an unorderedIntervalsSourceallowing no overlaps between subsourcesstatic IntervalsSourcewildcard(BytesRef wildcard)Return anIntervalsSourceover the disjunction of all terms that match a wildcard globstatic IntervalsSourcewildcard(BytesRef wildcard, int maxExpansions)Expert: Return anIntervalsSourceover the disjunction of all terms that match a wildcard globstatic 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
-
-
-
Method Detail
-
term
public static IntervalsSource term(BytesRef term)
Return anIntervalsSourceexposing intervals for a term
-
term
public static IntervalsSource term(String term)
Return anIntervalsSourceexposing intervals for a term
-
term
public static IntervalsSource term(String term, Predicate<BytesRef> payloadFilter)
Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each position
-
term
public static IntervalsSource term(BytesRef term, Predicate<BytesRef> payloadFilter)
Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each position
-
phrase
public static IntervalsSource phrase(String... terms)
Return anIntervalsSourceexposing intervals for a phrase consisting of a list of terms
-
phrase
public static IntervalsSource phrase(IntervalsSource... subSources)
Return anIntervalsSourceexposing intervals for a phrase consisting of a list of IntervalsSources
-
or
public static IntervalsSource or(IntervalsSource... subSources)
Return anIntervalsSourceover the disjunction of a set of sub-sourcesAutomatically rewrites if wrapped by an interval source that is sensitive to internal gaps
-
or
public static IntervalsSource or(boolean rewrite, IntervalsSource... subSources)
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
public static IntervalsSource or(List<IntervalsSource> subSources)
Return anIntervalsSourceover the disjunction of a set of sub-sources
-
or
public static IntervalsSource or(boolean rewrite, List<IntervalsSource> subSources)
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
public static IntervalsSource prefix(BytesRef 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
public static IntervalsSource prefix(BytesRef prefix, int maxExpansions)
Expert: Return anIntervalsSourceover the disjunction of all terms that begin with a prefixWARNING: Setting
maxExpansionsto 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
public static IntervalsSource wildcard(BytesRef 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:
for glob format
-
wildcard
public static IntervalsSource wildcard(BytesRef wildcard, int maxExpansions)
Expert: Return anIntervalsSourceover the disjunction of all terms that match a wildcard globWARNING: Setting
maxExpansionsto 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:
for glob format
-
multiterm
public static IntervalsSource multiterm(CompiledAutomaton ca, String pattern)
Expert: Return anIntervalsSourceover the disjunction of all terms that are 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
public static IntervalsSource multiterm(CompiledAutomaton ca, int maxExpansions, String pattern)
Expert: Return anIntervalsSourceover the disjunction of all terms that are accepted by the given automatonWARNING: Setting
maxExpansionsto 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
public static IntervalsSource maxwidth(int width, IntervalsSource subSource)
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
public static IntervalsSource maxgaps(int gaps, IntervalsSource subSource)
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
public static IntervalsSource extend(IntervalsSource source, int before, int after)
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
public static IntervalsSource ordered(IntervalsSource... subSources)
Create an orderedIntervalsSourceReturns intervals in which the subsources all appear in the given order
- Parameters:
subSources- an ordered set ofIntervalsSourceobjects
-
unordered
public static IntervalsSource unordered(IntervalsSource... subSources)
Create an unorderedIntervalsSourceReturns intervals in which all the subsources appear. The subsources may overlap
- Parameters:
subSources- an unordered set ofIntervalsSources
-
unorderedNoOverlaps
public static IntervalsSource unorderedNoOverlaps(IntervalsSource a, IntervalsSource b)
Create an unorderedIntervalsSourceallowing no overlaps between subsourcesReturns intervals in which both the subsources appear and do not overlap.
-
fixField
public static IntervalsSource fixField(String field, IntervalsSource source)
Create anIntervalsSourcethat always returns intervals from a specific fieldThis 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
public static IntervalsSource nonOverlapping(IntervalsSource minuend, IntervalsSource subtrahend)
Create a non-overlapping IntervalsSourceReturns intervals of the minuend that do not overlap with intervals from the subtrahend
- Parameters:
minuend- theIntervalsSourceto filtersubtrahend- theIntervalsSourceto filter by
-
overlapping
public static IntervalsSource overlapping(IntervalsSource source, IntervalsSource reference)
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
public static IntervalsSource notContaining(IntervalsSource minuend, IntervalsSource subtrahend)
Create a not-containingIntervalsSourceReturns intervals from the minuend that do not contain intervals of the subtrahend
- Parameters:
minuend- theIntervalsSourceto filtersubtrahend- theIntervalsSourceto filter by
-
containing
public static IntervalsSource containing(IntervalsSource big, IntervalsSource small)
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
public static IntervalsSource notContainedBy(IntervalsSource small, IntervalsSource big)
Create a not-contained-byIntervalsSourceReturns intervals from the small
IntervalsSourcethat do not appear within intervals from the bigIntervalsSource.- Parameters:
small- theIntervalsSourceto filterbig- theIntervalsSourceto filter by
-
containedBy
public static IntervalsSource containedBy(IntervalsSource small, IntervalsSource big)
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
public static IntervalsSource atLeast(int minShouldMatch, IntervalsSource... sources)
Return intervals that span combinations of intervals fromminShouldMatchof the sources
-
before
public static IntervalsSource before(IntervalsSource source, IntervalsSource reference)
Returns intervals from the source that appear before intervals from the reference
-
after
public static IntervalsSource after(IntervalsSource source, IntervalsSource reference)
Returns intervals from the source that appear after intervals from the reference
-
-