| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /* 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
- {
- /// <summary>
- /// Represents the BSON MinKey value.
- /// </summary>
- [Serializable]
- public class BsonMinKey : BsonValue, IComparable<BsonMinKey>, IEquatable<BsonMinKey>
- {
- // private static fields
- private static BsonMinKey __value = new BsonMinKey();
- // constructors
- // private so only the singleton instance can be created
- private BsonMinKey()
- : base(BsonType.MinKey)
- {
- }
- // public operators
- /// <summary>
- /// Compares two BsonMinKey values.
- /// </summary>
- /// <param name="lhs">The first BsonMinKey.</param>
- /// <param name="rhs">The other BsonMinKey.</param>
- /// <returns>True if the two BsonMinKey values are not equal according to ==.</returns>
- public static bool operator !=(BsonMinKey lhs, BsonMinKey rhs)
- {
- return !(lhs == rhs);
- }
- /// <summary>
- /// Compares two BsonMinKey values.
- /// </summary>
- /// <param name="lhs">The first BsonMinKey.</param>
- /// <param name="rhs">The other BsonMinKey.</param>
- /// <returns>True if the two BsonMinKey values are equal according to ==.</returns>
- public static bool operator ==(BsonMinKey lhs, BsonMinKey rhs)
- {
- if (object.ReferenceEquals(lhs, null)) { return object.ReferenceEquals(rhs, null); }
- return lhs.Equals(rhs);
- }
- // public static properties
- /// <summary>
- /// Gets the singleton instance of BsonMinKey.
- /// </summary>
- public static BsonMinKey Value { get { return __value; } }
- // public methods
- /// <summary>
- /// Compares this BsonMinKey to another BsonMinKey.
- /// </summary>
- /// <param name="other">The other BsonMinKey.</param>
- /// <returns>A 32-bit signed integer that indicates whether this BsonMinKey is less than, equal to, or greather than the other.</returns>
- public int CompareTo(BsonMinKey other)
- {
- if (other == null) { return 1; }
- return 0; // it's a singleton
- }
- /// <summary>
- /// Compares the BsonMinKey to another BsonValue.
- /// </summary>
- /// <param name="other">The other BsonValue.</param>
- /// <returns>A 32-bit signed integer that indicates whether this BsonMinKey is less than, equal to, or greather than the other BsonValue.</returns>
- public override int CompareTo(BsonValue other)
- {
- if (other == null) { return 1; }
- if (other is BsonMinKey) { return 0; }
- return -1;
- }
- /// <summary>
- /// Compares this BsonMinKey to another BsonMinKey.
- /// </summary>
- /// <param name="rhs">The other BsonMinKey.</param>
- /// <returns>True if the two BsonMinKey values are equal.</returns>
- public bool Equals(BsonMinKey rhs)
- {
- if (object.ReferenceEquals(rhs, null) || GetType() != rhs.GetType()) { return false; }
- return true; // it's a singleton
- }
- /// <summary>
- /// Compares this BsonMinKey to another object.
- /// </summary>
- /// <param name="obj">The other object.</param>
- /// <returns>True if the other object is a BsonMinKey and equal to this one.</returns>
- public override bool Equals(object obj)
- {
- return Equals(obj as BsonMinKey); // works even if obj is null or of a different type
- }
- /// <summary>
- /// Gets the hash code.
- /// </summary>
- /// <returns>The hash code.</returns>
- public override int GetHashCode()
- {
- return BsonType.GetHashCode();
- }
- /// <summary>
- /// Returns a string representation of the value.
- /// </summary>
- /// <returns>A string representation of the value.</returns>
- public override string ToString()
- {
- return "BsonMinKey";
- }
- }
- }
|