/* Copyright 2010-2014 MongoDB Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; namespace MongoDB.Bson { /// /// Represents the BSON MaxKey value. /// [Serializable] public class BsonMaxKey : BsonValue, IComparable, IEquatable { // private static fields private static BsonMaxKey __value = new BsonMaxKey(); // constructors // private so only the singleton instance can be created private BsonMaxKey() : base(BsonType.MaxKey) { } // public operators /// /// Compares two BsonMaxKey values. /// /// The first BsonMaxKey. /// The other BsonMaxKey. /// True if the two BsonMaxKey values are not equal according to ==. public static bool operator !=(BsonMaxKey lhs, BsonMaxKey rhs) { return !(lhs == rhs); } /// /// Compares two BsonMaxKey values. /// /// The first BsonMaxKey. /// The other BsonMaxKey. /// True if the two BsonMaxKey values are equal according to ==. public static bool operator ==(BsonMaxKey lhs, BsonMaxKey rhs) { if (object.ReferenceEquals(lhs, null)) { return object.ReferenceEquals(rhs, null); } return lhs.Equals(rhs); } // public static properties /// /// Gets the singleton instance of BsonMaxKey. /// public static BsonMaxKey Value { get { return __value; } } // public methods /// /// Compares this BsonMaxKey to another BsonMaxKey. /// /// The other BsonMaxKey. /// A 32-bit signed integer that indicates whether this BsonMaxKey is less than, equal to, or greather than the other. public int CompareTo(BsonMaxKey other) { if (other == null) { return 1; } return 0; // it's a singleton } /// /// Compares the BsonMaxKey to another BsonValue. /// /// The other BsonValue. /// A 32-bit signed integer that indicates whether this BsonMaxKey is less than, equal to, or greather than the other BsonValue. public override int CompareTo(BsonValue other) { if (other == null) { return 1; } if (other is BsonMaxKey) { return 0; } return 1; } /// /// Compares this BsonMaxKey to another BsonMaxKey. /// /// The other BsonMaxKey. /// True if the two BsonMaxKey values are equal. public bool Equals(BsonMaxKey rhs) { if (object.ReferenceEquals(rhs, null) || GetType() != rhs.GetType()) { return false; } return true; // it's a singleton } /// /// Compares this BsonMaxKey to another object. /// /// The other object. /// True if the other object is a BsonMaxKey and equal to this one. public override bool Equals(object obj) { return Equals(obj as BsonMaxKey); // works even if obj is null or of a different type } /// /// Gets the hash code. /// /// The hash code. public override int GetHashCode() { return BsonType.GetHashCode(); } /// /// Returns a string representation of the value. /// /// A string representation of the value. public override string ToString() { return "BsonMaxKey"; } } }