Method Summary |
|
public Object | clone() Return a clone of this object. |
public int | compareTo(Object op2) Compare this to op2, returning a comparison code. |
public JMLShort | dividedBy(JMLShort i2) Return a new object containing the quotient of this object's
short value divided by that of the given argument. |
public boolean | equals(Object op2) Test whether this object's value is equal to the given argument. |
public Short | getShort() Return an Short object containing the short value in this
object. |
public boolean | greaterThan(JMLShort i2) Tell whether this object's short value is strictly greater
than that of the given argument. |
public boolean | greaterThanOrEqualTo(JMLShort i2) Tell whether this object's short value is greater than or equal
to that of the given argument. |
public int | hashCode() Return a hash code for this object. |
public boolean | lessThan(JMLShort i2) Tell whether this object's short value is strictly less
than that of the given argument. |
public boolean | lessThanOrEqualTo(JMLShort i2) Tell whether this object's short value is less than or equal
to that of the given argument. |
public JMLShort | minus(JMLShort i2) Return a new object containing the difference between this object's
short value and that of the given argument. |
public JMLShort | negated() Return a new object containing the negation of this object's
short value. |
public JMLShort | plus(JMLShort i2) Return a new object containing the sum of this object's
short value and that of the given argument. |
public JMLShort | remainderBy(JMLShort i2) Return a new object containing the remainder of this object's
short value divided by that of the given argument. |
public short | shortValue() Return the short value in this object. |
public JMLShort | times(JMLShort i2) Return a new object containing the product of this object's
short value and that of the given argument. |
public String | toString() Return a string representation of this object. |