The DisjunctionMaxQuery type exposes the following members.

Constructors

  NameDescription
Public methodDisjunctionMaxQuery(Single)
Creates a new empty DisjunctionMaxQuery. Use add() to add the subqueries.
Public methodDisjunctionMaxQuery(ICollection, Single)
Creates a new DisjunctionMaxQuery

Methods

  NameDescription
Public methodAdd(ICollection)
Add a collection of disjuncts to this disjunction via Iterable
Public methodAdd(Query)
Add a subquery to this disjunction
Public methodClone
Create a shallow copy of us -- used in rewriting if necessary
(Overrides Query..::..Clone()()()().)
Public methodCombine
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()). 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.
(Inherited from Query.)
Public methodCreateWeight (Overrides Query..::..CreateWeight(Searcher).)
Public methodEquals
Return true iff we represent the same query as o
(Overrides Query..::..Equals(Object).)
Public methodExtractTerms (Overrides Query..::..ExtractTerms(Hashtable).)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetBoost
Gets the boost for this clause. Documents matching this clause will (in addition to the normal weightings) have their score multiplied by
CopyC#
b
. The boost is 1.0 by default.
(Inherited from Query.)
Public methodGetHashCode
Compute a hash code for hashing us
(Overrides Query..::..GetHashCode()()()().)
Public methodGetSimilarity
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.
(Inherited from Query.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIterator
An Iterator<Query> over the disjuncts
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRewrite
Optimize our representation and our subqueries representations
(Overrides Query..::..Rewrite(IndexReader).)
Public methodSetBoost
Sets the boost for this query clause to
CopyC#
b
. Documents matching this clause will (in addition to the normal weightings) have their score multiplied by
CopyC#
b
.
(Inherited from Query.)
Public methodToString()()()()
Prints a query to a string.
(Inherited from Query.)
Public methodToString(String)
Prettyprint us.
(Overrides Query..::..ToString(String).)
Public methodWeight
Expert: Constructs and initializes a Weight for a top-level query.
(Inherited from Query.)

See Also