| Package | Description |
|---|---|
| org.jscience.mathematics.number |
Provides common types of numbers most of them implementing the
field interface. |
| Modifier and Type | Field and Description |
|---|---|
static Integer64 |
Integer64.ONE
The 64 bits floating point representing one.
|
static Integer64 |
Integer64.ZERO
The 64 bits floating point representing zero.
|
| Modifier and Type | Method and Description |
|---|---|
Integer64 |
Integer64.abs()
Returns the absolute value of this number.
|
Integer64 |
Integer64.copy() |
Integer64 |
Integer64.divide(Integer64 that)
Returns this number divided by the one specified.
|
Integer64 |
Integer64.divide(long value)
Returns this number divided by the specified value.
|
Integer64 |
Integer64.minus(Integer64 that)
Returns the difference between this number and the one specified.
|
Integer64 |
Integer64.minus(long value)
Returns the difference between this number and the specified value
|
Integer64 |
Integer64.opposite()
Returns the opposite of this number.
|
Integer64 |
Integer64.plus(Integer64 that)
Returns the sum of this number with the one specified.
|
Integer64 |
Integer64.plus(long value)
Returns the sum of this number with the specifice value.
|
Integer64 |
Integer64.times(Integer64 that)
Returns the product of this number with the one specified.
|
Integer64 |
Integer64.times(long value)
Returns the product of this number with the specified value.
|
static Integer64 |
Integer64.valueOf(CharSequence chars)
Returns the number for the specified character sequence.
|
static Integer64 |
Integer64.valueOf(long longValue)
Returns the 64 bits integer from the specified
long value. |
| Modifier and Type | Method and Description |
|---|---|
int |
Integer64.compareTo(Integer64 that) |
Integer64 |
Integer64.divide(Integer64 that)
Returns this number divided by the one specified.
|
boolean |
Integer64.isLargerThan(Integer64 that)
Compares the magnitude of this number with that number.
|
Integer64 |
Integer64.minus(Integer64 that)
Returns the difference between this number and the one specified.
|
Integer64 |
Integer64.plus(Integer64 that)
Returns the sum of this number with the one specified.
|
Integer64 |
Integer64.times(Integer64 that)
Returns the product of this number with the one specified.
|