Uses of Class
org.apache.lucene.queries.spans.SpanWeight
-
Packages that use SpanWeight 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 SpanWeight in org.apache.lucene.queries.payloads
Subclasses of SpanWeight in org.apache.lucene.queries.payloads Modifier and Type Class Description private class
PayloadScoreQuery.PayloadSpanWeight
class
SpanPayloadCheckQuery.SpanPayloadCheckWeight
Weight that pulls its Spans using a PayloadSpanCollectorFields in org.apache.lucene.queries.payloads declared as SpanWeight Modifier and Type Field Description private SpanWeight
PayloadScoreQuery.PayloadSpanWeight. innerWeight
(package private) SpanWeight
SpanPayloadCheckQuery.SpanPayloadCheckWeight. matchWeight
Methods in org.apache.lucene.queries.payloads that return SpanWeight Modifier and Type Method Description SpanWeight
PayloadScoreQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanPayloadCheckQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
Constructors in org.apache.lucene.queries.payloads with parameters of type SpanWeight Constructor Description PayloadSpanScorer(SpanWeight weight, PayloadScoreQuery.PayloadSpans spans, LeafSimScorer docScorer)
PayloadSpanWeight(IndexSearcher searcher, SpanWeight innerWeight, float boost)
SpanPayloadCheckWeight(IndexSearcher searcher, java.util.Map<Term,TermStates> termStates, SpanWeight matchWeight, float boost, SpanPayloadCheckQuery.PayloadType payloadType)
-
Uses of SpanWeight in org.apache.lucene.queries.spans
Subclasses of SpanWeight in org.apache.lucene.queries.spans Modifier and Type Class Description class
SpanContainingQuery.SpanContainingWeight
Creates SpanContainingQuery scorer instancesclass
SpanContainQuery.SpanContainWeight
private class
SpanNearQuery.SpanGapQuery.SpanGapWeight
class
SpanNearQuery.SpanNearWeight
Creates SpanNearQuery scorer instancesclass
SpanNotQuery.SpanNotWeight
Creates SpanNotQuery scorer instancesclass
SpanOrQuery.SpanOrWeight
Creates SpanOrQuery scorer instancesclass
SpanPositionCheckQuery.SpanPositionCheckWeight
Creates SpanPositionCheckQuery scorer instancesclass
SpanTermQuery.SpanTermWeight
Creates SpanTermQuery scorer instancesclass
SpanWithinQuery.SpanWithinWeight
Creates SpanWithinQuery scorer instancesFields in org.apache.lucene.queries.spans declared as SpanWeight Modifier and Type Field Description (package private) SpanWeight
SpanContainQuery.SpanContainWeight. bigWeight
(package private) SpanWeight
SpanNotQuery.SpanNotWeight. excludeWeight
(package private) SpanWeight
SpanNotQuery.SpanNotWeight. includeWeight
(package private) SpanWeight
SpanContainQuery.SpanContainWeight. littleWeight
(package private) SpanWeight
SpanPositionCheckQuery.SpanPositionCheckWeight. matchWeight
Fields in org.apache.lucene.queries.spans with type parameters of type SpanWeight Modifier and Type Field Description (package private) java.util.List<SpanWeight>
SpanNearQuery.SpanNearWeight. subWeights
(package private) java.util.List<SpanWeight>
SpanOrQuery.SpanOrWeight. subWeights
Methods in org.apache.lucene.queries.spans that return SpanWeight Modifier and Type Method Description SpanWeight
FieldMaskingSpanQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanContainingQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanMultiTermQueryWrapper. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanNearQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanNearQuery.SpanGapQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanNotQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanOrQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanPositionCheckQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
abstract SpanWeight
SpanQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanTermQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
SpanWeight
SpanWithinQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
Methods in org.apache.lucene.queries.spans with parameters of type SpanWeight Modifier and Type Method Description static java.util.Map<Term,TermStates>
SpanQuery. getTermStates(SpanWeight... weights)
Build a map of terms toTermStates
, for use in constructing SpanWeightsMethod parameters in org.apache.lucene.queries.spans with type arguments of type SpanWeight Modifier and Type Method Description static java.util.Map<Term,TermStates>
SpanQuery. getTermStates(java.util.Collection<SpanWeight> weights)
Build a map of terms toTermStates
, for use in constructing SpanWeightsConstructors in org.apache.lucene.queries.spans with parameters of type SpanWeight Constructor Description SpanContainingWeight(IndexSearcher searcher, java.util.Map<Term,TermStates> terms, SpanWeight bigWeight, SpanWeight littleWeight, float boost)
SpanContainWeight(IndexSearcher searcher, java.util.Map<Term,TermStates> terms, SpanWeight bigWeight, SpanWeight littleWeight, float boost)
SpanNotWeight(IndexSearcher searcher, java.util.Map<Term,TermStates> terms, SpanWeight includeWeight, SpanWeight excludeWeight, float boost)
SpanPositionCheckWeight(SpanWeight matchWeight, IndexSearcher searcher, java.util.Map<Term,TermStates> terms, float boost)
SpanScorer(SpanWeight weight, Spans spans, LeafSimScorer docScorer)
Sole constructor.SpanWithinWeight(IndexSearcher searcher, java.util.Map<Term,TermStates> terms, SpanWeight bigWeight, SpanWeight littleWeight, float boost)
Constructor parameters in org.apache.lucene.queries.spans with type arguments of type SpanWeight Constructor Description SpanNearWeight(java.util.List<SpanWeight> subWeights, IndexSearcher searcher, java.util.Map<Term,TermStates> terms, float boost)
SpanOrWeight(IndexSearcher searcher, java.util.Map<Term,TermStates> terms, java.util.List<SpanWeight> subWeights, float boost)
-