Return true iff we represent the same query as o

Namespace: Lucene.Net.Search
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public override bool Equals(
	Object o
)
Visual Basic
Public Overrides Function Equals ( _
	o As Object _
) As Boolean
Visual C++
public:
virtual bool Equals(
	Object^ o
) override

Parameters

o
Type: System..::..Object
another object

Return Value

true iff o is a DisjunctionMaxQuery with the same boost and the same subqueries, in the same order, as us

See Also