Package | Description |
---|---|
org.apache.lucene.queries.payloads |
The payloads package provides Query mechanisms for finding and using payloads.
|
org.apache.lucene.search.spans |
The calculus of spans.
|
Modifier and Type | Class and Description |
---|---|
private class |
PayloadScoreQuery.PayloadSpanWeight |
class |
SpanPayloadCheckQuery.SpanPayloadCheckWeight
Weight that pulls its Spans using a PayloadSpanCollector
|
Modifier and Type | Field and Description |
---|---|
private SpanWeight |
PayloadScoreQuery.PayloadSpanWeight.innerWeight |
(package private) SpanWeight |
SpanPayloadCheckQuery.SpanPayloadCheckWeight.matchWeight |
Modifier and Type | Method and Description |
---|---|
SpanWeight |
PayloadScoreQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
SpanWeight |
SpanPayloadCheckQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
Constructor and 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) |
Modifier and Type | Class and Description |
---|---|
class |
SpanContainingQuery.SpanContainingWeight |
class |
SpanContainQuery.SpanContainWeight |
private class |
SpanNearQuery.SpanGapQuery.SpanGapWeight |
class |
SpanNearQuery.SpanNearWeight |
class |
SpanNotQuery.SpanNotWeight |
class |
SpanOrQuery.SpanOrWeight |
class |
SpanPositionCheckQuery.SpanPositionCheckWeight |
class |
SpanTermQuery.SpanTermWeight |
class |
SpanWithinQuery.SpanWithinWeight |
Modifier and Type | Field and 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 |
Modifier and Type | Field and Description |
---|---|
(package private) java.util.List<SpanWeight> |
SpanNearQuery.SpanNearWeight.subWeights |
(package private) java.util.List<SpanWeight> |
SpanOrQuery.SpanOrWeight.subWeights |
Modifier and Type | Method and Description |
---|---|
SpanWeight |
SpanBoostQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
SpanWeight |
SpanWithinQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
SpanWeight |
SpanTermQuery.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 |
FieldMaskingSpanQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
abstract SpanWeight |
SpanQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
SpanWeight |
SpanNotQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
SpanWeight |
SpanPositionCheckQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
SpanWeight |
SpanOrQuery.createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
Modifier and Type | Method and Description |
---|---|
static java.util.Map<Term,TermStates> |
SpanQuery.getTermStates(SpanWeight... weights)
Build a map of terms to
TermStates , for use in constructing SpanWeights |
Modifier and Type | Method and Description |
---|---|
static java.util.Map<Term,TermStates> |
SpanQuery.getTermStates(java.util.Collection<SpanWeight> weights)
Build a map of terms to
TermStates , for use in constructing SpanWeights |
Constructor and 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 and 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) |