Uses of Class
org.apache.lucene.search.ScoreMode
-
Packages that use ScoreMode Package Description org.apache.lucene.document The logical representation of aDocumentfor indexing and searching.org.apache.lucene.search Code to search indices.org.apache.lucene.search.spans The calculus of spans. -
-
Uses of ScoreMode in org.apache.lucene.document
Methods in org.apache.lucene.document with parameters of type ScoreMode Modifier and Type Method Description WeightLatLonDocValuesPointInPolygonQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightXYDocValuesPointInGeometryQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) -
Uses of ScoreMode in org.apache.lucene.search
Methods in org.apache.lucene.search that return ScoreMode Modifier and Type Method Description ScoreModeCollector. scoreMode()Indicates what features are required from the scorer.ScoreModeFilterCollector. scoreMode()ScoreModeMultiCollector. scoreMode()ScoreModeMultiCollectorManager.Collectors. scoreMode()ScoreModeTimeLimitingCollector. scoreMode()ScoreModeTopFieldCollector. scoreMode()ScoreModeTopScoreDocCollector. scoreMode()ScoreModeTotalHitCountCollector. scoreMode()static ScoreModeScoreMode. valueOf(String name)Returns the enum constant of this type with the specified name.static ScoreMode[]ScoreMode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.search with parameters of type ScoreMode Modifier and Type Method Description WeightBooleanQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightBoostQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightConstantScoreQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightDisjunctionMaxQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)Create the Weight used to score usWeightDocValuesFieldExistsQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightIndexOrDocValuesQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightIndexSearcher. createWeight(Query query, ScoreMode scoreMode, float boost)Creates aWeightfor the given query, potentially adding caching if possible and configured.WeightMatchAllDocsQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightMatchNoDocsQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightMultiPhraseQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightNormsFieldExistsQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightPhraseQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightPointInSetQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightPointRangeQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)Expert: Constructs an appropriate Weight implementation for this query.WeightSynonymQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightTermInSetQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)WeightTermQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)Constructors in org.apache.lucene.search with parameters of type ScoreMode Constructor Description ConstantScoreScorer(Weight weight, float score, ScoreMode scoreMode, DocIdSetIterator disi)Constructor based on aDocIdSetIteratorwhich will be used to drive iteration.ConstantScoreScorer(Weight weight, float score, ScoreMode scoreMode, TwoPhaseIterator twoPhaseIterator)Constructor based on aTwoPhaseIterator.DisjunctionMaxWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)Construct the Weight for this Query searched by searcher. -
Uses of ScoreMode in org.apache.lucene.search.spans
Methods in org.apache.lucene.search.spans with parameters of type ScoreMode Modifier and Type Method Description SpanWeightFieldMaskingSpanQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanBoostQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanContainingQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanMultiTermQueryWrapper. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanNearQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanNotQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanOrQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanPositionCheckQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)abstract SpanWeightSpanQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanTermQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)SpanWeightSpanWithinQuery. createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
-