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 JMLLong | dividedBy(JMLLong i2) Return a new object containing the quotient of this object's
long 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 Long | getLong() Return an Long object containing the long value in this
object. |
public boolean | greaterThan(JMLLong i2) Tell whether this object's long value is strictly greater
than that of the given argument. |
public boolean | greaterThanOrEqualTo(JMLLong i2) Tell whether this object's long 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(JMLLong i2) Tell whether this object's long value is strictly less
than that of the given argument. |
public boolean | lessThanOrEqualTo(JMLLong i2) Tell whether this object's long value is less than or equal
to that of the given argument. |
public long | longValue() Return the long value in this object. |
public JMLLong | minus(JMLLong i2) Return a new object containing the difference between this object's
long value and that of the given argument. |
public JMLLong | negated() Return a new object containing the negation of this object's
long value. |
public JMLLong | plus(JMLLong i2) Return a new object containing the sum of this object's
long value and that of the given argument. |
public JMLLong | remainderBy(JMLLong i2) Return a new object containing the remainder of this object's
long value divided by that of the given argument. |
public JMLLong | times(JMLLong i2) Return a new object containing the product of this object's
long value and that of the given argument. |
public String | toString() Return a string representation of this object. |