Apache Lucene.Net 2.1 Class Library API

ConstantScoreRangeQuery Methods

The methods of the ConstantScoreRangeQuery class are listed below. For a complete list of ConstantScoreRangeQuery class members, see the ConstantScoreRangeQuery Members topic.

Public Instance Methods

Clone 
Combine (inherited from Query)Expert: called when re-writing queries under MultiSearcher. Create a single query suitable for use by all subsearchers (in 1-1 correspondence with queries). This is an optimization of the OR of all queries. We handle the common optimization cases of equal queries and overlapping clauses of boolean OR queries (as generated by MultiTermQuery.rewrite() and RangeQuery.rewrite()). Be careful overriding this method as queries[0] determines which method will be called and is not necessarily of the same type as the other queries.
EqualsReturns true if
o
is equal to this.
ExtractTerms (inherited from Query) Expert: adds all terms occuring in this query to the terms set. Only works if this query is in its {@link #rewrite rewritten} form.
GetBoost (inherited from Query)Gets the boost for this clause. Documents matching this clause will (in addition to the normal weightings) have their score multiplied by
b
. The boost is 1.0 by default.
GetFieldReturns the field name for this query
GetHashCodeReturns a hash code value for this object.
GetLowerValReturns the value of the lower endpoint of this range query, null if open ended
GetSimilarity (inherited from Query)Expert: Returns the Similarity implementation to be used for this query. Subclasses may override this method to specify their own Similarity implementation, perhaps one that delegates through that of the Searcher. By default the Searcher's Similarity implementation is returned.
GetType (inherited from Object) Gets the Type of the current instance.
GetUpperValReturns the value of the upper endpoint of this range query, null if open ended
IncludesLowerReturns
true
if the lower endpoint is inclusive
IncludesUpperReturns
true
if the upper endpoint is inclusive
Rewrite 
SetBoost (inherited from Query)Sets the boost for this query clause to
b
. Documents matching this clause will (in addition to the normal weightings) have their score multiplied by
b
.
ToStringOverloaded. Prints a user-readable version of this query.
ToString (inherited from Query)Overloaded. Prints a query to a string.
Weight (inherited from Query)Expert: Constructs and initializes a Weight for a top-level query.

Protected Instance Methods

Finalize (inherited from Object) Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
MemberwiseClone (inherited from Object) Creates a shallow copy of the current Object.

Protected Internal Instance Methods

CreateWeight (inherited from Query) 

See Also

ConstantScoreRangeQuery Class | Lucene.Net.Search Namespace