Uses of Class
org.apache.lucene.queries.intervals.IntervalsSource
-
Packages that use IntervalsSource Package Description org.apache.lucene.queries.intervals Intervals queriesorg.apache.lucene.queryparser.flexible.standard.nodes.intervalfn This package contains classes that implement interval function support for the standard syntax parser. -
-
Uses of IntervalsSource in org.apache.lucene.queries.intervals
Subclasses of IntervalsSource in org.apache.lucene.queries.intervals Modifier and Type Class Description (package private) classBlockIntervalsSource(package private) classConjunctionIntervalsSource(package private) classContainedByIntervalsSource(package private) classContainingIntervalsSource(package private) classDifferenceIntervalsSource(package private) classDisjunctionIntervalsSource(package private) classExtendedIntervalsSourceclassFilteredIntervalsSourceAn IntervalsSource that filters the intervals from another IntervalsSourceprivate static classFilteredIntervalsSource.MaxGapsprivate static classFilteredIntervalsSource.MaxWidth(package private) classFixedFieldIntervalsSource(package private) classMinimizingConjunctionIntervalsSource(package private) classMinimumShouldMatchIntervalsSource(package private) classMultiTermIntervalsSource(package private) classNoMatchIntervalsSourceA source returning no matches(package private) classNonOverlappingIntervalsSource(package private) classNotContainedByIntervalsSource(package private) classNotContainingIntervalsSource(package private) classOffsetIntervalsSourceTracks a reference intervals source, and produces a pseudo-interval that appears either one position before or one position after each interval from the reference(package private) classOrderedIntervalsSource(package private) classOverlappingIntervalsSource(package private) classPayloadFilteredTermIntervalsSource(package private) classRepeatingIntervalsSourceGenerates an iterator that spans repeating instances of a sub-iterator, avoiding minimization.(package private) classTermIntervalsSource(package private) classUnorderedIntervalsSourceFields in org.apache.lucene.queries.intervals declared as IntervalsSource Modifier and Type Field Description private IntervalsSourceContainedByIntervalsSource. bigprivate IntervalsSourceContainingIntervalsSource. bigprotected IntervalsSourceFilteredIntervalsSource. inprivate IntervalsSourceOffsetIntervalsSource. in(package private) IntervalsSourceRepeatingIntervalsSource. inprivate IntervalsSourceIntervalQuery. intervalsSource(package private) IntervalsSourceDifferenceIntervalsSource. minuend(package private) static IntervalsSourceIntervalBuilder. NO_INTERVALSprivate IntervalsSourceOverlappingIntervalsSource. referenceprivate IntervalsSourceContainedByIntervalsSource. smallprivate IntervalsSourceContainingIntervalsSource. small(package private) IntervalsSourceExtendedIntervalsSource. sourceprivate IntervalsSourceFixedFieldIntervalsSource. sourceprivate IntervalsSourceOverlappingIntervalsSource. sourceprivate IntervalsSource[]MinimumShouldMatchIntervalsSource. sources(package private) IntervalsSourceDifferenceIntervalsSource. subtrahendFields in org.apache.lucene.queries.intervals with type parameters of type IntervalsSource Modifier and Type Field Description protected java.util.List<IntervalsSource>ConjunctionIntervalsSource. subSources(package private) java.util.Collection<IntervalsSource>DisjunctionIntervalsSource. subSourcesprotected java.util.List<IntervalsSource>MinimizingConjunctionIntervalsSource. subSourcesMethods in org.apache.lucene.queries.intervals that return IntervalsSource Modifier and Type Method Description static IntervalsSourceIntervals. after(IntervalsSource source, IntervalsSource reference)Returns intervals from the source that appear after intervals from the referencestatic IntervalsSourceIntervals. analyzedText(java.lang.String text, Analyzer analyzer, java.lang.String field, int maxGaps, boolean ordered)Returns intervals that correspond to tokens from aTokenStreamreturned fortextby applying the providedAnalyzeras iftextwas the content of the givenfield.static IntervalsSourceIntervals. analyzedText(TokenStream tokenStream, int maxGaps, boolean ordered)Returns intervals that correspond to tokens from the providedTokenStream.private static IntervalsSourceIntervalBuilder. analyzeSynonyms(TokenStream ts, int maxGaps, boolean ordered)private static IntervalsSourceIntervalBuilder. analyzeTerm(TokenStream ts)(package private) static IntervalsSourceIntervalBuilder. analyzeText(CachingTokenFilter stream, int maxGaps, boolean ordered)static IntervalsSourceIntervals. atLeast(int minShouldMatch, IntervalsSource... sources)Return intervals that span combinations of intervals fromminShouldMatchof the sourcesstatic IntervalsSourceIntervals. before(IntervalsSource source, IntervalsSource reference)Returns intervals from the source that appear before intervals from the reference(package private) static IntervalsSourceBlockIntervalsSource. build(java.util.List<IntervalsSource> subSources)(package private) static IntervalsSourceContainedByIntervalsSource. build(IntervalsSource small, IntervalsSource big)(package private) static IntervalsSourceContainingIntervalsSource. build(IntervalsSource big, IntervalsSource small)(package private) static IntervalsSourceNotContainedByIntervalsSource. build(IntervalsSource minuend, IntervalsSource subtrahend)(package private) static IntervalsSourceNotContainingIntervalsSource. build(IntervalsSource minuend, IntervalsSource subtrahend)(package private) static IntervalsSourceOrderedIntervalsSource. build(java.util.List<IntervalsSource> sources)(package private) static IntervalsSourceRepeatingIntervalsSource. build(IntervalsSource in, int childCount)(package private) static IntervalsSourceUnorderedIntervalsSource. build(java.util.List<IntervalsSource> sources)private static IntervalsSourceIntervalBuilder. combineSources(java.util.List<IntervalsSource> sources, int maxGaps, boolean ordered)static IntervalsSourceIntervals. containedBy(IntervalsSource small, IntervalsSource big)Create a contained-byIntervalsSourcestatic IntervalsSourceIntervals. containing(IntervalsSource big, IntervalsSource small)Create a containingIntervalsSource(package private) static IntervalsSourceDisjunctionIntervalsSource. create(java.util.Collection<IntervalsSource> subSources, boolean pullUpDisjunctions)private static IntervalsSourceIntervalBuilder. extend(IntervalsSource source, int precedingSpaces)static IntervalsSourceIntervals. extend(IntervalsSource source, int before, int after)Create anIntervalsSourcethat wraps another source, extending its intervals by a number of positions before and after.static IntervalsSourceIntervals. fixField(java.lang.String field, IntervalsSource source)Create anIntervalsSourcethat always returns intervals from a specific fieldstatic IntervalsSourceIntervals. fuzzyTerm(java.lang.String term, int maxEdits)A fuzzy termIntervalsSourcematches the disjunction of intervals of terms that are within the specifiedmaxEditsfrom the provided term.static IntervalsSourceIntervals. fuzzyTerm(java.lang.String term, int maxEdits, int prefixLength, boolean transpositions, int maxExpansions)A fuzzy termIntervalsSourcematches the disjunction of intervals of terms that are within the specifiedmaxEditsfrom the provided term.static IntervalsSourceIntervals. maxgaps(int gaps, IntervalsSource subSource)Create anIntervalsSourcethat filters a sub-source by its gapsstatic IntervalsSourceFilteredIntervalsSource. maxGaps(IntervalsSource in, int maxGaps)static IntervalsSourceIntervals. maxwidth(int width, IntervalsSource subSource)Create anIntervalsSourcethat filters a sub-source by the width of its intervalsstatic IntervalsSourceFilteredIntervalsSource. maxWidth(IntervalsSource in, int maxWidth)static IntervalsSourceIntervals. multiterm(CompiledAutomaton ca, int maxExpansions, java.lang.String pattern)Expert: Return anIntervalsSourceover the disjunction of all terms that are accepted by the given automatonstatic IntervalsSourceIntervals. multiterm(CompiledAutomaton ca, java.lang.String pattern)Expert: Return anIntervalsSourceover the disjunction of all terms that are accepted by the given automatonstatic IntervalsSourceIntervals. nonOverlapping(IntervalsSource minuend, IntervalsSource subtrahend)Create a non-overlapping IntervalsSourcestatic IntervalsSourceIntervals. notContainedBy(IntervalsSource small, IntervalsSource big)Create a not-contained-byIntervalsSourcestatic IntervalsSourceIntervals. notContaining(IntervalsSource minuend, IntervalsSource subtrahend)Create a not-containingIntervalsSourcestatic IntervalsSourceIntervals. notWithin(IntervalsSource minuend, int positions, IntervalsSource subtrahend)Create a not-withinIntervalsSourcestatic IntervalsSourceIntervals. or(boolean rewrite, java.util.List<IntervalsSource> subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceIntervals. or(boolean rewrite, IntervalsSource... subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceIntervals. or(java.util.List<IntervalsSource> subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceIntervals. or(IntervalsSource... subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceIntervals. ordered(IntervalsSource... subSources)Create an orderedIntervalsSourcestatic IntervalsSourceIntervals. overlapping(IntervalsSource source, IntervalsSource reference)Returns intervals from a source that overlap with intervals from another sourcestatic IntervalsSourceIntervals. phrase(java.lang.String... terms)Return anIntervalsSourceexposing intervals for a phrase consisting of a list of termsstatic IntervalsSourceIntervals. phrase(IntervalsSource... subSources)Return anIntervalsSourceexposing intervals for a phrase consisting of a list ofinterval sourcesstatic IntervalsSourceIntervals. prefix(BytesRef prefix)Return anIntervalsSourceover the disjunction of all terms that begin with a prefixstatic IntervalsSourceIntervals. prefix(BytesRef prefix, int maxExpansions)Expert: Return anIntervalsSourceover the disjunction of all terms that begin with a prefixstatic IntervalsSourceIntervals. term(java.lang.String term)Return anIntervalsSourceexposing intervals for a termstatic IntervalsSourceIntervals. term(java.lang.String term, java.util.function.Predicate<BytesRef> payloadFilter)Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each positionstatic IntervalsSourceIntervals. term(BytesRef term)Return anIntervalsSourceexposing intervals for a termstatic IntervalsSourceIntervals. term(BytesRef term, java.util.function.Predicate<BytesRef> payloadFilter)Return anIntervalsSourceexposing intervals for a term, filtered by the value of the term's payload at each positionstatic IntervalsSourceIntervals. unordered(IntervalsSource... subSources)Create an unorderedIntervalsSource.static IntervalsSourceIntervals. unorderedNoOverlaps(IntervalsSource a, IntervalsSource b)Create an unorderedIntervalsSourceallowing no overlaps between subsourcesstatic IntervalsSourceIntervals. wildcard(BytesRef wildcard)Return anIntervalsSourceover the disjunction of all terms that match a wildcard globstatic IntervalsSourceIntervals. wildcard(BytesRef wildcard, int maxExpansions)Expert: Return anIntervalsSourceover the disjunction of all terms that match a wildcard globstatic IntervalsSourceIntervals. within(IntervalsSource source, int positions, IntervalsSource reference)Returns intervals of the source that appear within a set number of positions of intervals from the referenceMethods in org.apache.lucene.queries.intervals that return types with arguments of type IntervalsSource Modifier and Type Method Description private static java.util.List<IntervalsSource>IntervalBuilder. analyzeGraph(TokenStream source)private static java.util.List<IntervalsSource>IntervalBuilder. analyzeTerms(TokenStream ts)private static java.util.List<IntervalsSource>OrderedIntervalsSource. deduplicate(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>UnorderedIntervalsSource. deduplicate(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>BlockIntervalsSource. flatten(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>OrderedIntervalsSource. flatten(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>UnorderedIntervalsSource. flatten(java.util.List<IntervalsSource> sources)static java.util.List<IntervalsSource>Disjunctions. pullUp(java.util.List<IntervalsSource> sources, java.util.function.Function<java.util.List<IntervalsSource>,IntervalsSource> function)static java.util.List<IntervalsSource>Disjunctions. pullUp(IntervalsSource source, java.util.function.Function<IntervalsSource,IntervalsSource> function)java.util.Collection<IntervalsSource>BlockIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>ContainedByIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>ContainingIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>DisjunctionIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>ExtendedIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>FilteredIntervalsSource.MaxWidth. pullUpDisjunctions()java.util.Collection<IntervalsSource>FilteredIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>FixedFieldIntervalsSource. pullUpDisjunctions()abstract java.util.Collection<IntervalsSource>IntervalsSource. pullUpDisjunctions()Expert: return the set of disjunctions that make up this IntervalsSourcejava.util.Collection<IntervalsSource>MinimumShouldMatchIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>MultiTermIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>NoMatchIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>NonOverlappingIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>NotContainedByIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>NotContainingIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>OffsetIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>OrderedIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>OverlappingIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>PayloadFilteredTermIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>RepeatingIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>TermIntervalsSource. pullUpDisjunctions()java.util.Collection<IntervalsSource>UnorderedIntervalsSource. pullUpDisjunctions()private static java.util.Collection<IntervalsSource>DisjunctionIntervalsSource. simplify(java.util.Collection<IntervalsSource> sources)private static java.util.List<IntervalsSource>Disjunctions. splitDisjunctions(IntervalsSource source)Methods in org.apache.lucene.queries.intervals with parameters of type IntervalsSource Modifier and Type Method Description static IntervalsSourceIntervals. after(IntervalsSource source, IntervalsSource reference)Returns intervals from the source that appear after intervals from the referencestatic IntervalsSourceIntervals. atLeast(int minShouldMatch, IntervalsSource... sources)Return intervals that span combinations of intervals fromminShouldMatchof the sourcesstatic IntervalsSourceIntervals. before(IntervalsSource source, IntervalsSource reference)Returns intervals from the source that appear before intervals from the reference(package private) static IntervalsSourceContainedByIntervalsSource. build(IntervalsSource small, IntervalsSource big)(package private) static IntervalsSourceContainingIntervalsSource. build(IntervalsSource big, IntervalsSource small)(package private) static IntervalsSourceNotContainedByIntervalsSource. build(IntervalsSource minuend, IntervalsSource subtrahend)(package private) static IntervalsSourceNotContainingIntervalsSource. build(IntervalsSource minuend, IntervalsSource subtrahend)(package private) static IntervalsSourceRepeatingIntervalsSource. build(IntervalsSource in, int childCount)static IntervalsSourceIntervals. containedBy(IntervalsSource small, IntervalsSource big)Create a contained-byIntervalsSourcestatic IntervalsSourceIntervals. containing(IntervalsSource big, IntervalsSource small)Create a containingIntervalsSourceprivate static IntervalsSourceIntervalBuilder. extend(IntervalsSource source, int precedingSpaces)static IntervalsSourceIntervals. extend(IntervalsSource source, int before, int after)Create anIntervalsSourcethat wraps another source, extending its intervals by a number of positions before and after.static IntervalsSourceIntervals. fixField(java.lang.String field, IntervalsSource source)Create anIntervalsSourcethat always returns intervals from a specific fieldstatic IntervalsSourceIntervals. maxgaps(int gaps, IntervalsSource subSource)Create anIntervalsSourcethat filters a sub-source by its gapsstatic IntervalsSourceFilteredIntervalsSource. maxGaps(IntervalsSource in, int maxGaps)static IntervalsSourceIntervals. maxwidth(int width, IntervalsSource subSource)Create anIntervalsSourcethat filters a sub-source by the width of its intervalsstatic IntervalsSourceFilteredIntervalsSource. maxWidth(IntervalsSource in, int maxWidth)static IntervalsSourceIntervals. nonOverlapping(IntervalsSource minuend, IntervalsSource subtrahend)Create a non-overlapping IntervalsSourcestatic IntervalsSourceIntervals. notContainedBy(IntervalsSource small, IntervalsSource big)Create a not-contained-byIntervalsSourcestatic IntervalsSourceIntervals. notContaining(IntervalsSource minuend, IntervalsSource subtrahend)Create a not-containingIntervalsSourcestatic IntervalsSourceIntervals. notWithin(IntervalsSource minuend, int positions, IntervalsSource subtrahend)Create a not-withinIntervalsSourcestatic IntervalsSourceIntervals. or(boolean rewrite, IntervalsSource... subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceIntervals. or(IntervalsSource... subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceIntervals. ordered(IntervalsSource... subSources)Create an orderedIntervalsSourcestatic IntervalsSourceIntervals. overlapping(IntervalsSource source, IntervalsSource reference)Returns intervals from a source that overlap with intervals from another sourcestatic IntervalsSourceIntervals. phrase(IntervalsSource... subSources)Return anIntervalsSourceexposing intervals for a phrase consisting of a list ofinterval sourcesstatic java.util.List<IntervalsSource>Disjunctions. pullUp(IntervalsSource source, java.util.function.Function<IntervalsSource,IntervalsSource> function)private static java.util.List<IntervalsSource>Disjunctions. splitDisjunctions(IntervalsSource source)static IntervalsSourceIntervals. unordered(IntervalsSource... subSources)Create an unorderedIntervalsSource.static IntervalsSourceIntervals. unorderedNoOverlaps(IntervalsSource a, IntervalsSource b)Create an unorderedIntervalsSourceallowing no overlaps between subsourcesstatic IntervalsSourceIntervals. within(IntervalsSource source, int positions, IntervalsSource reference)Returns intervals of the source that appear within a set number of positions of intervals from the referenceMethod parameters in org.apache.lucene.queries.intervals with type arguments of type IntervalsSource Modifier and Type Method Description (package private) static IntervalsSourceBlockIntervalsSource. build(java.util.List<IntervalsSource> subSources)(package private) static IntervalsSourceOrderedIntervalsSource. build(java.util.List<IntervalsSource> sources)(package private) static IntervalsSourceUnorderedIntervalsSource. build(java.util.List<IntervalsSource> sources)private static IntervalsSourceIntervalBuilder. combineSources(java.util.List<IntervalsSource> sources, int maxGaps, boolean ordered)(package private) static IntervalsSourceDisjunctionIntervalsSource. create(java.util.Collection<IntervalsSource> subSources, boolean pullUpDisjunctions)private static java.util.List<IntervalsSource>OrderedIntervalsSource. deduplicate(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>UnorderedIntervalsSource. deduplicate(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>BlockIntervalsSource. flatten(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>OrderedIntervalsSource. flatten(java.util.List<IntervalsSource> sources)private static java.util.List<IntervalsSource>UnorderedIntervalsSource. flatten(java.util.List<IntervalsSource> sources)static IntervalsSourceIntervals. or(boolean rewrite, java.util.List<IntervalsSource> subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic IntervalsSourceIntervals. or(java.util.List<IntervalsSource> subSources)Return anIntervalsSourceover the disjunction of a set of sub-sourcesstatic java.util.List<IntervalsSource>Disjunctions. pullUp(java.util.List<IntervalsSource> sources, java.util.function.Function<java.util.List<IntervalsSource>,IntervalsSource> function)static java.util.List<IntervalsSource>Disjunctions. pullUp(java.util.List<IntervalsSource> sources, java.util.function.Function<java.util.List<IntervalsSource>,IntervalsSource> function)static java.util.List<IntervalsSource>Disjunctions. pullUp(java.util.List<IntervalsSource> sources, java.util.function.Function<java.util.List<IntervalsSource>,IntervalsSource> function)static java.util.List<IntervalsSource>Disjunctions. pullUp(IntervalsSource source, java.util.function.Function<IntervalsSource,IntervalsSource> function)static java.util.List<IntervalsSource>Disjunctions. pullUp(IntervalsSource source, java.util.function.Function<IntervalsSource,IntervalsSource> function)private static java.util.Collection<IntervalsSource>DisjunctionIntervalsSource. simplify(java.util.Collection<IntervalsSource> sources)Constructor parameters in org.apache.lucene.queries.intervals with type arguments of type IntervalsSource Constructor Description BlockIntervalsSource(java.util.List<IntervalsSource> sources)ConjunctionIntervalsSource(java.util.List<IntervalsSource> subSources)DisjunctionIntervalsSource(java.util.Collection<IntervalsSource> subSources, boolean pullUpDisjunctions)MinimizingConjunctionIntervalsSource(java.util.List<IntervalsSource> subSources)OrderedIntervalsSource(java.util.List<IntervalsSource> sources)UnorderedIntervalsSource(java.util.List<IntervalsSource> sources) -
Uses of IntervalsSource in org.apache.lucene.queryparser.flexible.standard.nodes.intervalfn
Methods in org.apache.lucene.queryparser.flexible.standard.nodes.intervalfn that return IntervalsSource Modifier and Type Method Description IntervalsSourceAfter. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceAnalyzedText. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceAtLeast. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceBefore. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceContainedBy. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceContaining. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceExtend. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceFuzzyTerm. toIntervalSource(java.lang.String field, Analyzer analyzer)abstract IntervalsSourceIntervalFunction. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceMaxGaps. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceMaxWidth. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceNonOverlapping. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceNotContainedBy. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceNotContaining. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceNotWithin. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceOr. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceOrdered. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceOverlapping. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourcePhrase. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceUnordered. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceUnorderedNoOverlaps. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceWildcard. toIntervalSource(java.lang.String field, Analyzer analyzer)IntervalsSourceWithin. toIntervalSource(java.lang.String field, Analyzer analyzer)
-