Lucene.Net
3.0.3
Lucene.Net is a .NET port of the Java Lucene Indexing Library
|
Expert: Describes the score computation for document and query, and can distinguish a match independent of a positive value. More...
Inherits Lucene.Net.Search.Explanation.
Public Member Functions | |
ComplexExplanation () | |
ComplexExplanation (bool match, float value_Renamed, System.String description) | |
Public Member Functions inherited from Lucene.Net.Search.Explanation | |
Explanation () | |
Explanation (float value, System.String description) | |
virtual Explanation[] | GetDetails () |
The sub-nodes of this explanation node. | |
virtual void | AddDetail (Explanation detail) |
Adds a sub-node to this explanation node. | |
override System.String | ToString () |
Render an explanation as text. | |
virtual System.String | ToHtml () |
Render an explanation as HTML. | |
Properties | |
virtual bool | Match [get, set] |
The match status of this explanation node. | |
override bool | IsMatch [get] |
Indicates whether or not this Explanation models a good match. | |
Properties inherited from Lucene.Net.Search.Explanation | |
virtual bool | IsMatch [get] |
Indicates whether or not this Explanation models a good match. | |
virtual float | Value [get, set] |
The value assigned to this explanation node. | |
virtual string | Description [get, set] |
A description of this explanation node. | |
Expert: Describes the score computation for document and query, and can distinguish a match independent of a positive value.
Definition at line 27 of file ComplexExplanation.cs.
Lucene.Net.Search.ComplexExplanation.ComplexExplanation | ( | ) |
Definition at line 31 of file ComplexExplanation.cs.
Lucene.Net.Search.ComplexExplanation.ComplexExplanation | ( | bool | match, |
float | value_Renamed, | ||
System.String | description | ||
) |
Definition at line 35 of file ComplexExplanation.cs.
|
get |
Indicates whether or not this Explanation models a good match.
If the match status is explicitly set (i.e.: not null) this method uses it; otherwise it defers to the superclass.
Definition at line 57 of file ComplexExplanation.cs.
|
getset |
The match status of this explanation node.
May be null if match status is unknown
Definition at line 44 of file ComplexExplanation.cs.