Method Summary |
|
public Integer64 | abs() Returns the absolute value of this number. |
public int | compareTo(long value) Compares this number with the specified value for order.
Parameters: value - the value to be compared with. |
public int | compareTo(Integer64 that) |
public Integer64 | copy() |
public Integer64 | divide(Integer64 that) Returns this number divided by the one specified.
Parameters: that - the number divisor. |
public Integer64 | divide(long value) Returns this number divided by the specified value.
Parameters: value - the value divisor. |
public double | doubleValue() |
public boolean | equals(Object that) Compares this number against the specified object.
Parameters: that - the object to compare with. |
public boolean | equals(long value) Compares this number against the specified value.
Parameters: value - the value to compare with. |
public int | hashCode() Returns the hash code for this number. |
public boolean | isLargerThan(Integer64 that) Compares the magnitude of this number with that number. |
public long | longValue() |
public Integer64 | minus(Integer64 that) Returns the difference between this number and the one specified.
Parameters: that - the number to be subtracted. |
public Integer64 | minus(long value) Returns the difference between this number and the specified value
Parameters: value - the value to be subtracted. |
public Integer64 | opposite() Returns the opposite of this number. |
public Integer64 | plus(Integer64 that) Returns the sum of this number with the one specified.
Parameters: that - the number to be added. |
public Integer64 | plus(long value) Returns the sum of this number with the specifice value.
Parameters: value - the value to be added. |
public Integer64 | times(Integer64 that) Returns the product of this number with the one specified.
Parameters: that - the number multiplier. |
public Integer64 | times(long value) Returns the product of this number with the specified value.
Parameters: value - the value multiplier. |
public Text | toText() Returns the decimal text representation of this number. |
public static Integer64 | valueOf(long longValue) Returns the 64 bits integer from the specified long value.
Parameters: longValue - the long value for this number. |
public static Integer64 | valueOf(CharSequence chars) Returns the number for the specified character sequence.
Parameters: chars - the character sequence. |