| java.lang.Object org.apache.lucene.search.Explanation org.apache.lucene.search.ComplexExplanation
ComplexExplanation | public class ComplexExplanation extends Explanation (Code) | | Expert: Describes the score computation for document and query, andcan distinguish a match independent of a positive value.
|
Method Summary | |
public Boolean | getMatch() The match status of this explanation node. | protected String | getSummary() | public boolean | isMatch() Indicates wether or not this Explanation models a good match. | public void | setMatch(Boolean match) Sets the match status assigned to this explanation node. |
ComplexExplanation | public ComplexExplanation()(Code) | | |
ComplexExplanation | public ComplexExplanation(boolean match, float value, String description)(Code) | | |
getMatch | public Boolean getMatch()(Code) | | The match status of this explanation node.
May be null if match status is unknown |
isMatch | public boolean isMatch()(Code) | | Indicates wether or not this Explanation models a good match.
If the match statis is explicitly set (ie: not null) this method
uses it; otherwise it defers to the superclass.
See Also: ComplexExplanation.getMatch |
setMatch | public void setMatch(Boolean match)(Code) | | Sets the match status assigned to this explanation node.
Parameters: match - May be null if match status is unknown |
|
|