Uses of Class
org.apache.lucene.search.Explanation
-
Packages that use Explanation Package Description org.apache.lucene.search Code to search indices.org.apache.lucene.search.similarities This package contains the various ranking models that can be used in Lucene.org.apache.lucene.search.spans The calculus of spans. -
-
Uses of Explanation in org.apache.lucene.search
Methods in org.apache.lucene.search that return Explanation Modifier and Type Method Description ExplanationConstantScoreWeight. explain(LeafReaderContext context, int doc)ExplanationDisjunctionMaxQuery.DisjunctionMaxWeight. explain(LeafReaderContext context, int doc)Explain the score we computed for docExplanationDoubleValuesSource. explain(LeafReaderContext ctx, int docId, Explanation scoreExplanation)An explanation of the value for the named document.ExplanationFilterWeight. explain(LeafReaderContext context, int doc)ExplanationIndexSearcher. explain(Query query, int doc)Returns an Explanation that describes howdocscored againstquery.protected ExplanationIndexSearcher. explain(Weight weight, int doc)Expert: low-level implementation method Returns an Explanation that describes howdocscored againstweight.ExplanationQueryRescorer. explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID)abstract ExplanationRescorer. explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID)Explains how the score for the specified document was computed.ExplanationSortRescorer. explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID)abstract ExplanationWeight. explain(LeafReaderContext context, int doc)An explanation of the score computation for the named document.Explanation[]Explanation. getDetails()The sub-nodes of this explanation node.static ExplanationExplanation. match(float value, String description, Collection<Explanation> details)Create a new explanation for a match.static ExplanationExplanation. match(float value, String description, Explanation... details)Create a new explanation for a match.static ExplanationExplanation. noMatch(String description, Collection<Explanation> details)Create a new explanation for a document which does not match.static ExplanationExplanation. noMatch(String description, Explanation... details)Create a new explanation for a document which does not match.Methods in org.apache.lucene.search with parameters of type Explanation Modifier and Type Method Description ExplanationDoubleValuesSource. explain(LeafReaderContext ctx, int docId, Explanation scoreExplanation)An explanation of the value for the named document.ExplanationQueryRescorer. explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID)abstract ExplanationRescorer. explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID)Explains how the score for the specified document was computed.ExplanationSortRescorer. explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID)static ExplanationExplanation. match(float value, String description, Explanation... details)Create a new explanation for a match.static ExplanationExplanation. noMatch(String description, Explanation... details)Create a new explanation for a document which does not match.Method parameters in org.apache.lucene.search with type arguments of type Explanation Modifier and Type Method Description static ExplanationExplanation. match(float value, String description, Collection<Explanation> details)Create a new explanation for a match.static ExplanationExplanation. noMatch(String description, Collection<Explanation> details)Create a new explanation for a document which does not match. -
Uses of Explanation in org.apache.lucene.search.similarities
Methods in org.apache.lucene.search.similarities that return Explanation Modifier and Type Method Description abstract ExplanationAfterEffect. explain(BasicStats stats, float tfn)Returns an explanation for the score.ExplanationAfterEffect.NoAfterEffect. explain(BasicStats stats, float tfn)ExplanationAfterEffectB. explain(BasicStats stats, float tfn)ExplanationAfterEffectL. explain(BasicStats stats, float tfn)ExplanationBasicModel. explain(BasicStats stats, float tfn)Returns an explanation for the score.ExplanationBasicModelIn. explain(BasicStats stats, float tfn)ExplanationDistribution. explain(BasicStats stats, float tfn, float lambda)Explains the score.abstract ExplanationLambda. explain(BasicStats stats)Explains the lambda parameter.ExplanationLambdaDF. explain(BasicStats stats)ExplanationLambdaTTF. explain(BasicStats stats)ExplanationNormalization. explain(BasicStats stats, float tf, float len)Returns an explanation for the normalized term frequency.ExplanationNormalization.NoNormalization. explain(BasicStats stats, float tf, float len)ExplanationSimilarity.SimScorer. explain(int doc, Explanation freq)Explain the score for a single documentprotected ExplanationSimilarityBase. explain(BasicStats stats, int doc, Explanation freq, float docLen)Explains the score.ExplanationBM25Similarity. idfExplain(CollectionStatistics collectionStats, TermStatistics termStats)Computes a score factor for a simple term and returns an explanation for that score factor.ExplanationBM25Similarity. idfExplain(CollectionStatistics collectionStats, TermStatistics[] termStats)Computes a score factor for a phrase.ExplanationClassicSimilarity. idfExplain(CollectionStatistics collectionStats, TermStatistics termStats)ExplanationTFIDFSimilarity. idfExplain(CollectionStatistics collectionStats, TermStatistics termStats)Computes a score factor for a simple term and returns an explanation for that score factor.ExplanationTFIDFSimilarity. idfExplain(CollectionStatistics collectionStats, TermStatistics[] termStats)Computes a score factor for a phrase.Methods in org.apache.lucene.search.similarities with parameters of type Explanation Modifier and Type Method Description ExplanationSimilarity.SimScorer. explain(int doc, Explanation freq)Explain the score for a single documentprotected ExplanationSimilarityBase. explain(BasicStats stats, int doc, Explanation freq, float docLen)Explains the score.Method parameters in org.apache.lucene.search.similarities with type arguments of type Explanation Modifier and Type Method Description protected voidAxiomatic. explain(List<Explanation> subs, BasicStats stats, int doc, float freq, float docLen)protected voidDFRSimilarity. explain(List<Explanation> subs, BasicStats stats, int doc, float freq, float docLen)protected voidIBSimilarity. explain(List<Explanation> subs, BasicStats stats, int doc, float freq, float docLen)protected voidLMDirichletSimilarity. explain(List<Explanation> subs, BasicStats stats, int doc, float freq, float docLen)protected voidLMJelinekMercerSimilarity. explain(List<Explanation> subs, BasicStats stats, int doc, float freq, float docLen)protected voidLMSimilarity. explain(List<Explanation> subExpls, BasicStats stats, int doc, float freq, float docLen)protected voidSimilarityBase. explain(List<Explanation> subExpls, BasicStats stats, int doc, float freq, float docLen)Subclasses should implement this method to explain the score. -
Uses of Explanation in org.apache.lucene.search.spans
Methods in org.apache.lucene.search.spans that return Explanation Modifier and Type Method Description ExplanationSpanWeight. explain(LeafReaderContext context, int doc)
-