CompareTo() public method

public CompareTo ( SqlMoney value ) : int
value SqlMoney
return int
Beispiel #1
0
        /**
         * Compares two instances of SqlMoney to determine if the first is less than the second.
         * @param x A SqlMoney instance
         * @param y A SqlMoney instance
         * @return A SqlBoolean that is True if the first instance is less than the second instance, otherwise False.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean LessThanOrEqual(SqlMoney x, SqlMoney y)
        {
            if (x.IsNull || y.IsNull)
            {
                return(SqlBoolean.Null);
            }

            if (x.CompareTo(y) <= 0)
            {
                return(SqlBoolean.True);
            }

            return(SqlBoolean.False);
        }
Beispiel #2
0
        /**
         * Compares two instances of SqlMoney to determine if the first is greater than the second.
         * @param x A SqlMoney instance
         * @param y A SqlMoney instance
         * @return A SqlBoolean that is True if the first instance is greater than the second instance, otherwise False.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean GreaterThan(SqlMoney x, SqlMoney y)
        {
            if (x.IsNull || y.IsNull)
            {
                return(SqlBoolean.Null);
            }

            if (x.CompareTo(y) > 0)
            {
                return(SqlBoolean.True);
            }

            return(SqlBoolean.False);
        }
Beispiel #3
0
		/**
		 * Compares two instances of SqlMoney to determine if the first is less than the second.
		 * @param x A SqlMoney instance
		 * @param y A SqlMoney instance
		 * @return A SqlBoolean that is True if the first instance is less than the second instance, otherwise False.
		 * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
		 */
		public static SqlBoolean LessThanOrEqual(SqlMoney x, SqlMoney y)
		{
			if (x.IsNull || y.IsNull)
				return SqlBoolean.Null;

			if (x.CompareTo(y) <= 0)
				return SqlBoolean.True;

			return SqlBoolean.False;
		}
Beispiel #4
0
		/**
		 * Compares two instances of SqlMoney to determine if the first is greater than the second.
		 * @param x A SqlMoney instance
		 * @param y A SqlMoney instance
		 * @return A SqlBoolean that is True if the first instance is greater than the second instance, otherwise False.
		 * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
		 */
		public static SqlBoolean GreaterThan(SqlMoney x, SqlMoney y)
		{
			if (x.IsNull || y.IsNull)
				return SqlBoolean.Null;

			if (x.CompareTo(y) > 0)
				return SqlBoolean.True;

			return SqlBoolean.False;
		}