Searched defs:Explanation (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DExplanation.java24 public class Explanation implements java.io.Serializable { class in inherits:java.io.Serializable
27 private ArrayList<Explanation> details; // sub-explanations
29 public Explanation() {} method in class:Explanation
31 public Explanation(float value, String description) { method in class:Explanation
37 * Indicates whether or not this Explanation models a good match.
40 * By default, an Explanation represents a "match" if the value is positive.
64 * information about this Explanation, without the "Details"
71 public Explanation[] getDetails() {
74 return details.toArray(new Explanation[0]);
78 public void addDetail(Explanation detai
[all...]

Completed in 11 milliseconds