Uses of Enum Class
org.apache.lucene.search.join.ScoreMode
Packages that use ScoreMode
-
Uses of ScoreMode in org.apache.lucene.search.join
Fields in org.apache.lucene.search.join declared as ScoreModeModifier and TypeFieldDescriptionprivate final ScoreMode
GlobalOrdinalsWithScoreQuery.scoreMode
(package private) final ScoreMode
PointInSetIncludingScoreQuery.scoreMode
private final ScoreMode
TermsIncludingScoreQuery.scoreMode
(package private) final ScoreMode
TermsWithScoreCollector.scoreMode
private final ScoreMode
ToParentBlockJoinQuery.BlockJoinScorer.scoreMode
private final ScoreMode
ToParentBlockJoinQuery.BlockJoinWeight.scoreMode
private final ScoreMode
ToParentBlockJoinQuery.scoreMode
Methods in org.apache.lucene.search.join that return ScoreModeModifier and TypeMethodDescriptionstatic ScoreMode
Returns the enum constant of this class with the specified name.static ScoreMode[]
ScoreMode.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.lucene.search.join with parameters of type ScoreModeModifier and TypeMethodDescription(package private) static TermsWithScoreCollector<?>
TermsWithScoreCollector.create
(String field, boolean multipleValuesPerDocument, ScoreMode scoreMode) Chooses the rightTermsWithScoreCollector
implementation.static GenericTermsCollector
GenericTermsCollector.createCollectorMV
(DocValuesTermsCollector.Function<SortedSetDocValues> mvFunction, ScoreMode mode) static GenericTermsCollector
GenericTermsCollector.createCollectorSV
(DocValuesTermsCollector.Function<SortedDocValues> svFunction, ScoreMode mode) private static Query
JoinUtil.createJoinQuery
(boolean multipleValuesPerDocument, String toField, Query fromQuery, String fromField, IndexSearcher fromSearcher, ScoreMode scoreMode, GenericTermsCollector collector) static Query
JoinUtil.createJoinQuery
(String fromField, boolean multipleValuesPerDocument, String toField, Class<? extends Number> numericType, Query fromQuery, IndexSearcher fromSearcher, ScoreMode scoreMode) Method for query time joining for numeric fields.static Query
JoinUtil.createJoinQuery
(String fromField, boolean multipleValuesPerDocument, String toField, Query fromQuery, IndexSearcher fromSearcher, ScoreMode scoreMode) Method for query time joining.static Query
JoinUtil.createJoinQuery
(String joinField, Query fromQuery, Query toQuery, IndexSearcher searcher, ScoreMode scoreMode, OrdinalMap ordinalMap) Delegates toJoinUtil.createJoinQuery(String, Query, Query, IndexSearcher, ScoreMode, OrdinalMap, int, int)
, but disables the min and max filtering.static Query
JoinUtil.createJoinQuery
(String joinField, Query fromQuery, Query toQuery, IndexSearcher searcher, ScoreMode scoreMode, OrdinalMap ordinalMap, int min, int max) A query time join using global ordinals over a dedicated join field.Constructors in org.apache.lucene.search.join with parameters of type ScoreModeModifierConstructorDescriptionBlockJoinScorer
(Weight weight, Scorer childScorer, BitSet parentBits, ScoreMode scoreMode) BlockJoinWeight
(Query joinQuery, Weight childWeight, BitSetProducer parentsFilter, ScoreMode scoreMode) (package private)
GlobalOrdinalsWithScoreCollector
(String field, OrdinalMap ordinalMap, long valueCount, ScoreMode scoreMode, int min, int max) (package private)
GlobalOrdinalsWithScoreQuery
(GlobalOrdinalsWithScoreCollector collector, ScoreMode scoreMode, String joinField, OrdinalMap globalOrds, Query toQuery, Query fromQuery, int min, int max, Object indexReaderContextId) (package private)
MV
(DocValuesTermsCollector.Function<SortedSetDocValues> docValuesCall, ScoreMode scoreMode) (package private)
PointInSetIncludingScoreQuery
(ScoreMode scoreMode, Query originalQuery, boolean multipleValuesPerDocument, String field, int bytesPerDim, PointInSetIncludingScoreQuery.Stream packedPoints) (package private)
SV
(DocValuesTermsCollector.Function<SortedDocValues> docValuesCall, ScoreMode scoreMode) (package private)
TermsIncludingScoreQuery
(ScoreMode scoreMode, String toField, boolean multipleValuesPerDocument, BytesRefHash terms, float[] scores, String fromField, Query fromQuery, Object indexReaderContextId) (package private)
TermsWithScoreCollector
(DocValuesTermsCollector.Function<DV> docValuesCall, ScoreMode scoreMode) ToParentBlockJoinQuery
(Query childQuery, BitSetProducer parentsFilter, ScoreMode scoreMode) Create a ToParentBlockJoinQuery.