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 JMLInteger | dividedBy(JMLInteger i2) Return a new object containing the quotient of this object's
integer 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 Integer | getInteger() Return an Integer object containing the integer value in this
object. |
public boolean | greaterThan(JMLInteger i2) Tell whether this object's integer value is strictly greater
than that of the given argument. |
public boolean | greaterThanOrEqualTo(JMLInteger i2) Tell whether this object's integer value is greater than or equal
to that of the given argument. |
public int | hashCode() Return a hash code for this object. |
public int | intValue() Return the integer value in this object. |
public boolean | lessThan(JMLInteger i2) Tell whether this object's integer value is strictly less
than that of the given argument. |
public boolean | lessThanOrEqualTo(JMLInteger i2) Tell whether this object's integer value is less than or equal
to that of the given argument. |
public JMLInteger | minus(JMLInteger i2) Return a new object containing the difference between this object's
integer value and that of the given argument. |
public JMLInteger | negated() Return a new object containing the negation of this object's
integer value. |
public JMLInteger | plus(JMLInteger i2) Return a new object containing the sum of this object's
integer value and that of the given argument. |
public JMLInteger | remainderBy(JMLInteger i2) Return a new object containing the remainder of this object's
integer value divided by that of the given argument. |
public JMLInteger | times(JMLInteger i2) Return a new object containing the product of this object's
integer value and that of the given argument. |
public String | toString() Return a string representation of this object. |