Lucene.Net.Search.BooleanClause.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns a hash code value for this object.
public GetHashCode ( ) : int
return int
		public override int GetHashCode()
		{
			return Query.GetHashCode() ^ (Occur.MUST.Equals(occur)?1:0) ^ (Occur.MUST_NOT.Equals(occur)?2:0);
		}