Uses of Class
org.apache.lucene.queries.spans.Spans
-
Packages that use Spans Package Description org.apache.lucene.queries.payloads The payloads package provides Query mechanisms for finding and using payloads.org.apache.lucene.queries.spans The calculus of spans. -
-
Uses of Spans in org.apache.lucene.queries.payloads
Methods in org.apache.lucene.queries.payloads that return Spans Modifier and Type Method Description Spans
SpanPayloadCheckQuery.SpanPayloadCheckWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
-
Uses of Spans in org.apache.lucene.queries.spans
Subclasses of Spans in org.apache.lucene.queries.spans Modifier and Type Class Description class
FilterSpans
ASpans
implementation wrapping another spans instance, allowing to filter spans matches easily by implementingFilterSpans.accept(org.apache.lucene.queries.spans.Spans)
class
NearSpansOrdered
A Spans that is formed from the ordered subspans of a SpanNearQuery where the subspans do not overlap and have a maximum slop between them.class
NearSpansUnordered
Similar toNearSpansOrdered
, but for the unordered case.class
TermSpans
Expert: Public for extension only.Fields in org.apache.lucene.queries.spans declared as Spans Modifier and Type Field Description protected Spans
FilterSpans. in
The wrapped spans instance.Spans
SpanDisiWrapper. spans
protected Spans
SpanScorer. spans
Methods in org.apache.lucene.queries.spans that return Spans Modifier and Type Method Description Spans
SpanContainingQuery.SpanContainingWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
Return spans frombig
that contain at least one spans fromlittle
.Spans
SpanNearQuery.SpanNearWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
Spans
SpanNotQuery.SpanNotWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
Spans
SpanOrQuery.SpanOrWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
Spans
SpanPositionCheckQuery.SpanPositionCheckWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
Spans
SpanScorer. getSpans()
return the Spans for this Scorer *Spans
SpanTermQuery.SpanTermWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
abstract Spans
SpanWeight. getSpans(LeafReaderContext ctx, SpanWeight.Postings requiredPostings)
Expert: Return a Spans object iterating over matches from this WeightSpans
SpanWithinQuery.SpanWithinWeight. getSpans(LeafReaderContext context, SpanWeight.Postings requiredPostings)
Return spans fromlittle
that are contained in a spans frombig
.Methods in org.apache.lucene.queries.spans with parameters of type Spans Modifier and Type Method Description protected abstract FilterSpans.AcceptStatus
FilterSpans. accept(Spans candidate)
Returns YES if the candidate should be an accepted match, NO if it should not, and NO_MORE_IN_CURRENT_DOC if iteration should move on to the next document.protected FilterSpans.AcceptStatus
SpanFirstQuery. acceptPosition(Spans spans)
protected abstract FilterSpans.AcceptStatus
SpanPositionCheckQuery. acceptPosition(Spans spans)
Implementing classes are required to return whether the current position is a match for the passed in "match"SpanQuery
.protected FilterSpans.AcceptStatus
SpanPositionRangeQuery. acceptPosition(Spans spans)
Constructors in org.apache.lucene.queries.spans with parameters of type Spans Constructor Description FilterSpans(Spans in)
Wrap the givenSpans
.SpanDisiWrapper(Spans spans)
SpanScorer(SpanWeight weight, Spans spans, LeafSimScorer docScorer)
Sole constructor.Constructor parameters in org.apache.lucene.queries.spans with type arguments of type Spans Constructor Description NearSpansOrdered(int allowedSlop, List<Spans> subSpans)
NearSpansUnordered(int allowedSlop, List<Spans> subSpans)
-