|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jboss.dna.common.math.LongOperations
@Immutable public class LongOperations

The math operations for long numbers.
| Constructor Summary | |
|---|---|
LongOperations()
|
|
| Method Summary | |
|---|---|
Long |
add(Long value1,
Long value2)
Add the two operands and return the sum. |
BigDecimal |
asBigDecimal(Long value)
Create a BigDecimal representation of the supplied value. |
int |
compare(Long value1,
Long value2)
Compare the two operands and return an integer that describes whether the first value is larger, smaller or the same as the second value. |
Long |
create(double value)
Convert the double representation into the natural object representation. |
Long |
create(int value)
Convert the integer representation into the natural object representation. |
Long |
create(long value)
Convert the long representation into the natural object representation. |
Long |
createZeroValue()
Create the object form of the "zero value". |
double |
divide(Long value1,
Long value2)
Divide the first operand by the second, and return the result. |
double |
doubleValue(Long value)
Convert the value to a double. |
float |
floatValue(Long value)
Convert the value to a float. |
Long |
fromBigDecimal(BigDecimal value)
Convert the BigDecimal representation into the natural object representation. |
Comparator<Long> |
getComparator()
Return a Comparator for this operand class. |
int |
getExponentInScientificNotation(Long value)
Get the exponent if the number were written in exponential form. |
Class<Long> |
getOperandClass()
Return the class that these operations operate upon. |
Long |
increment(Long value)
Increment the supplied operand by 1. |
int |
intValue(Long value)
Convert the value to an integer. |
Long |
keepSignificantFigures(Long value,
int numSigFigs)
|
long |
longValue(Long value)
Convert the value to a long integer. |
Long |
maximum(Long value1,
Long value2)
Compare the two operands and return the one that is larger. |
Long |
minimum(Long value1,
Long value2)
Compare the two operands and return the one that is smaller. |
Long |
multiply(Long value1,
Long value2)
Multiply the two operands and return the product. |
Long |
negate(Long value)
Negate the supplied operand. |
Long |
random(Long minimum,
Long maximum,
Random rng)
Generate a random instance within the specified range. |
Long |
roundDown(Long value,
int decimalShift)
Round down the supplied value to the desired scale. |
Long |
roundUp(Long value,
int decimalShift)
Round up the supplied value to the desired scale. |
short |
shortValue(Long value)
Convert the value to a short. |
double |
sqrt(Long value)
Return the square root of the supplied operand. |
Long |
subtract(Long value1,
Long value2)
Subtract the second operand from the first, and return the difference. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface java.util.Comparator |
|---|
equals |
| Constructor Detail |
|---|
public LongOperations()
| Method Detail |
|---|
public Class<Long> getOperandClass()
MathOperations
getOperandClass in interface MathOperations<Long>
public Long add(Long value1,
Long value2)
MathOperationszero value is used in place of any operand that is
null.
add in interface MathOperations<Long>value1 - the first operandvalue2 - the second operand
public Long subtract(Long value1,
Long value2)
MathOperationszero value is used in
place of any operand that is null.
subtract in interface MathOperations<Long>value1 - the first operandvalue2 - the second operand
public Long multiply(Long value1,
Long value2)
MathOperationszero value is used in place of any operand
that is null.
multiply in interface MathOperations<Long>value1 - the first operandvalue2 - the second operand
public double divide(Long value1,
Long value2)
MathOperationszero value is used in place
of any operand that is null.
divide in interface MathOperations<Long>value1 - the first operandvalue2 - the second operand
public Long negate(Long value)
MathOperationszero value is used in place of any operand that is null.
negate in interface MathOperations<Long>value - the value that is to be negated
public Long increment(Long value)
MathOperationsoperand class. The zero value is used in place of any operand that is
null.
increment in interface MathOperations<Long>value - the value that is to be incremented
public Long maximum(Long value1,
Long value2)
MathOperations
maximum in interface MathOperations<Long>value1 - the first operandvalue2 - the second operand
public Long minimum(Long value1,
Long value2)
MathOperations
minimum in interface MathOperations<Long>value1 - the first operandvalue2 - the second operand
public int compare(Long value1,
Long value2)
MathOperationsComparable. The zero value is used
in place of any operand that is null.
compare in interface Comparator<Long>compare in interface MathOperations<Long>value1 - the first operandvalue2 - the second operand
public BigDecimal asBigDecimal(Long value)
MathOperationsBigDecimal representation of the supplied value.
asBigDecimal in interface MathOperations<Long>value - the value that is to be converted to a BigDecimal
value is nullpublic Long fromBigDecimal(BigDecimal value)
MathOperationsBigDecimal representation into the natural object representation. This may result in loss of some data
(e.g., converting a decimal to an integer results in the loss of the fractional part of the number).
fromBigDecimal in interface MathOperations<Long>value - the BigDecimal value
value is nullpublic Long createZeroValue()
MathOperations
createZeroValue in interface MathOperations<Long>public Long create(int value)
MathOperations
create in interface MathOperations<Long>value - the integer value
public Long create(long value)
MathOperations
create in interface MathOperations<Long>value - the long value
public Long create(double value)
MathOperations
create in interface MathOperations<Long>value - the double value
public double sqrt(Long value)
MathOperations
sqrt in interface MathOperations<Long>value - the value whose root is to be found; may not be null or 0
public Comparator<Long> getComparator()
MathOperationsComparator for this operand class. The implementation is free to
return the same comparator instance from multiple invocations of this method.
getComparator in interface MathOperations<Long>
public Long random(Long minimum,
Long maximum,
Random rng)
MathOperations
random in interface MathOperations<Long>minimum - the minimum value, or null if the zero-value should be used for the minimummaximum - the maximum value, or null if the zero-value should be used for the maximumrng - the random number generator to use
operand class placed within the desired range using a random
distribution, or null if this class does not support generating random instancespublic double doubleValue(Long value)
MathOperationsoperand class.
doubleValue in interface MathOperations<Long>value - the value
public float floatValue(Long value)
MathOperationsoperand
class.
floatValue in interface MathOperations<Long>value - the value
public int intValue(Long value)
MathOperationsoperand class.
intValue in interface MathOperations<Long>value - the value
public long longValue(Long value)
MathOperationsoperand class.
longValue in interface MathOperations<Long>value - the value
public short shortValue(Long value)
MathOperationsoperand
class.
shortValue in interface MathOperations<Long>value - the value
public int getExponentInScientificNotation(Long value)
MathOperations
getExponentInScientificNotation in interface MathOperations<Long>value - the value
public Long roundUp(Long value,
int decimalShift)
MathOperationsdecimalShift places, rounding, and then shifting the decimal point of the rounded value by
-decimalShift
For example, consider the number 10.000354. This can be rounded to 10.0004 by calling this method and supplying the value and an "exponentToKeep" value of -4.
roundUp in interface MathOperations<Long>value - the value to be roundeddecimalShift - the number of places the decimal point should be shifted before rounding
public Long roundDown(Long value,
int decimalShift)
MathOperationsdecimalShift places, rounding, and then shifting the decimal point of the rounded value by
-decimalShift
For example, consider the number 10.000354. This can be rounded to 10.0003 by calling this method and supplying the value and an "exponentToKeep" value of -4.
roundDown in interface MathOperations<Long>value - the value to be roundeddecimalShift - the number of places the decimal point should be shifted before rounding
public Long keepSignificantFigures(Long value,
int numSigFigs)
keepSignificantFigures in interface MathOperations<Long>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||