/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.util; /** * A mutable short class. * * @version $Revision: 1.1 $ * @author Jason Dillon */ public class MuShort extends MuNumber { /** Short value */ private short value; /** * Construct a new mutable short integer. */ public MuShort() {} /** * Construct a new mutable short integer. * * @param s Short value. */ public MuShort(short s) { value = s; } /** * Construct a new mutable short integer. * * @param obj Object to convert to a short value. */ public MuShort(Object obj) { setValue(obj); } /** * Set the value. * * @param s short value. * @return The previous value. */ public short set(short s) { short old = value; value = s; return old; } /** * Get the current value. * * @return The current value. */ public short get() { return value; } /** * Set the value to value only if the current value is equal to * the assumed value. * * @param assumed The assumed value. * @param b The new value. * @return True if value was changed. */ public boolean commit(short assumed, short b) { boolean success = (assumed == value); if (success) value = b; return success; } /** * Swap values with another mutable short. * * @param b Mutable short to swap values with. * @return The new value. */ public short swap(MuShort b) { if (b == this) return value; short temp = value; value = b.value; b.value = temp; return value; } /** * Increment the value of this mutable short. * * @return Short value. */ public short increment() { return ++value; } /** * Decrement the value of this mutable short. * * @return Short value. */ public short decrement() { return --value; } /** * Add the specified amount. * * @param amount Amount to add. * @return The new value. */ public short add(short amount) { return value += amount; } /** * Subtract the specified amount. * * @param amount Amount to subtract. * @return The new value. */ public short subtract(short amount) { return value -= amount; } /** * Multiply by the specified factor. * * @param factor Factor to multiply by. * @return The new value. */ public short multiply(short factor) { return value *= factor; } /** * Divide by the specified factor. * * @param factor Factor to divide by. * @return The new value. */ public short divide(short factor) { return value /= factor; } /** * Set the value to the negative of its current value. * * @return The new value. */ public short negate() { value = ((short)-value); return value; } /** * Set the value to its complement. * * @return The new value. */ public short complement() { value = (short)~value; return value; } /** * ANDs the current value with the specified value. * * @param b Value to and with. * @return The new value. */ public short and(short b) { value = (short)(value & b); return value; } /** * ORs the current value with the specified value. * * @param b Value to or with. * @return The new value. */ public short or(short b) { value = (short)(value | b); return value; } /** * XORs the current value with the specified value. * * @param b Value to xor with. * @return The new value. */ public short xor(short b) { value = (short)(value ^ b); return value; } /** * Shift the current value to the right. * * @param bits The number of bits to shift. * @return The new value. */ public short shiftRight(int bits) { value >>= bits; return value; } /** * Shift the current value to the right with a zero extension. * * @param bits The number of bits to shift. * @return The new value. */ public short shiftRightZero(int bits) { value >>>= bits; return value; } /** * Shift the current value to the left. * * @param bits The number of bits to shift. * @return The new value. */ public short shiftLeft(int bits) { value <<= bits; return value; } /** * Compares this object with the specified short for order. * * @param other Value to compare with. * @return A negative integer, zero, or a positive integer as * this object is less than, equal to, or greater than * the specified object. */ public int compareTo(short other) { return (value < other) ? -1 : (value == other) ? 0 : 1; } /** * Compares this object with the specified object for order. * * @param other Value to compare with. * @return A negative integer, zero, or a positive integer as * this object is less than, equal to, or greater than * the specified object. * * @throws ClassCastException Object is not a MuShort. */ public int compareTo(Object obj) { return compareTo((MuShort)obj); } /** * Convert this mutable short integer to a string. * * @return String value. */ public String toString() { return String.valueOf(value); } /** * Get the hash code for this mutable short integer. * * @return Hash code. */ public int hashCode() { return (int)value; } /** * Test the equality of this mutable short integer and another object. * * @param obj Object to test equality with. * @return True if object is equal. */ public boolean equals(Object obj) { if (obj == this) return true; if (obj != null && obj.getClass() == getClass()) { return value == ((MuShort)obj).shortValue(); } return false; } /** * Return a cloned copy of this mutable short. * * @return Cloaned mutable short. */ public Object clone() { try { return super.clone(); } catch (CloneNotSupportedException e) { throw new InternalError(); } } ///////////////////////////////////////////////////////////////////////// // Number Support // ///////////////////////////////////////////////////////////////////////// /** * Return the byte value of this object. * * @return byte value. */ public byte byteValue() { return (byte)value; } /** * Return the short value of this object. * * @return short value. */ public short shortValue() { return (short)value; } /** * Return the int value of this object. * * @return int value. */ public int intValue() { return (int)value; } /** * Return the long value of this object. * * @return long value. */ public long longValue() { return (long)value; } /** * Return the float value of this object. * * @return float value. */ public float floatValue() { return (float)value; } /** * Return the double value of this object. * * @return double value. */ public double doubleValue() { return (double)value; } ///////////////////////////////////////////////////////////////////////// // Mutable Support // ///////////////////////////////////////////////////////////////////////// /** * Set the value of this mutable short integer. * * @param obj Object to convert to a short value. * * @throws NotCoercibleException Can not convert to short. */ public void setValue(Object obj) { if (obj instanceof Number) { value = ((Number)obj).shortValue(); } else { throw new NotCoercibleException("can not convert to 'short': " + obj); } } /** * Return the value of this mutable short integer. * * @return java.lang.Short value. */ public Object getValue() { return new Short(value); } }