org.jboss.dna.common.math
Class FloatOperations

java.lang.Object
  extended by org.jboss.dna.common.math.FloatOperations
All Implemented Interfaces:
Comparator<Float>, MathOperations<Float>

@Immutable
public class FloatOperations
extends Object
implements MathOperations<Float>, Comparator<Float>

The math operations for float numbers.


Constructor Summary
FloatOperations()
           
 
Method Summary
 Float add(Float value1, Float value2)
          Add the two operands and return the sum.
 BigDecimal asBigDecimal(Float value)
          Create a BigDecimal representation of the supplied value.
 int compare(Float value1, Float 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.
 Float create(double value)
          Convert the double representation into the natural object representation.
 Float create(int value)
          Convert the integer representation into the natural object representation.
 Float create(long value)
          Convert the long representation into the natural object representation.
 Float createZeroValue()
          Create the object form of the "zero value".
 double divide(Float value1, Float value2)
          Divide the first operand by the second, and return the result.
 double doubleValue(Float value)
          Convert the value to a double.
 float floatValue(Float value)
          Convert the value to a float.
 Float fromBigDecimal(BigDecimal value)
          Convert the BigDecimal representation into the natural object representation.
 Comparator<Float> getComparator()
          Return a Comparator for this operand class.
 int getExponentInScientificNotation(Float value)
          Get the exponent if the number were written in exponential form.
 Class<Float> getOperandClass()
          Return the class that these operations operate upon.
 Float increment(Float value)
          Increment the supplied operand by 1.
 int intValue(Float value)
          Convert the value to an integer.
 Float keepSignificantFigures(Float value, int numSigFigs)
           
 long longValue(Float value)
          Convert the value to a long integer.
 Float maximum(Float value1, Float value2)
          Compare the two operands and return the one that is larger.
 Float minimum(Float value1, Float value2)
          Compare the two operands and return the one that is smaller.
 Float multiply(Float value1, Float value2)
          Multiply the two operands and return the product.
 Float negate(Float value)
          Negate the supplied operand.
 Float random(Float minimum, Float maximum, Random rng)
          Generate a random instance within the specified range.
 Float roundDown(Float value, int decimalShift)
          Round down the supplied value to the desired scale.
 Float roundUp(Float value, int decimalShift)
          Round up the supplied value to the desired scale.
 short shortValue(Float value)
          Convert the value to a short.
 double sqrt(Float value)
          Return the square root of the supplied operand.
 Float subtract(Float value1, Float 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

FloatOperations

public FloatOperations()
Method Detail

getOperandClass

public Class<Float> getOperandClass()
Description copied from interface: MathOperations
Return the class that these operations operate upon.

Specified by:
getOperandClass in interface MathOperations<Float>
Returns:
the class

add

public Float add(Float value1,
                 Float value2)
Description copied from interface: MathOperations
Add the two operands and return the sum. The zero value is used in place of any operand that is null.

Specified by:
add in interface MathOperations<Float>
Parameters:
value1 - the first operand
value2 - the second operand
Returns:
the sum of the two operands.

subtract

public Float subtract(Float value1,
                      Float value2)
Description copied from interface: MathOperations
Subtract the second operand from the first, and return the difference. The zero value is used in place of any operand that is null.

Specified by:
subtract in interface MathOperations<Float>
Parameters:
value1 - the first operand
value2 - the second operand
Returns:
the difference between the two operands.

multiply

public Float multiply(Float value1,
                      Float value2)
Description copied from interface: MathOperations
Multiply the two operands and return the product. The zero value is used in place of any operand that is null.

Specified by:
multiply in interface MathOperations<Float>
Parameters:
value1 - the first operand
value2 - the second operand
Returns:
the product of the two operands.

divide

public double divide(Float value1,
                     Float value2)
Description copied from interface: MathOperations
Divide the first operand by the second, and return the result. The zero value is used in place of any operand that is null.

Specified by:
divide in interface MathOperations<Float>
Parameters:
value1 - the first operand
value2 - the second operand
Returns:
the result of the division

negate

public Float negate(Float value)
Description copied from interface: MathOperations
Negate the supplied operand. The zero value is used in place of any operand that is null.

Specified by:
negate in interface MathOperations<Float>
Parameters:
value - the value that is to be negated
Returns:
the result of the negation

increment

public Float increment(Float value)
Description copied from interface: MathOperations
Increment the supplied operand by 1. (Note, the exact meaning of "1" is dependent upon the particular operand class. The zero value is used in place of any operand that is null.

Specified by:
increment in interface MathOperations<Float>
Parameters:
value - the value that is to be incremented
Returns:
the incremented value

maximum

public Float maximum(Float value1,
                     Float value2)
Description copied from interface: MathOperations
Compare the two operands and return the one that is larger. A null value is considered smaller than non-null values (including 0).

Specified by:
maximum in interface MathOperations<Float>
Parameters:
value1 - the first operand
value2 - the second operand
Returns:
the larger of the two operands

minimum

public Float minimum(Float value1,
                     Float value2)
Description copied from interface: MathOperations
Compare the two operands and return the one that is smaller. A null value is considered larger than non-null values (including 0).

Specified by:
minimum in interface MathOperations<Float>
Parameters:
value1 - the first operand
value2 - the second operand
Returns:
the smaller of the two operands

compare

public int compare(Float value1,
                   Float value2)
Description copied from interface: MathOperations
Compare the two operands and return an integer that describes whether the first value is larger, smaller or the same as the second value. The semantics are identical to those of Comparable. The zero value is used in place of any operand that is null.

Specified by:
compare in interface Comparator<Float>
Specified by:
compare in interface MathOperations<Float>
Parameters:
value1 - the first operand
value2 - the second operand
Returns:
-1 if the first value is smaller than the second, 1 if the first value is larger than the second, or 0 if they are equal.

asBigDecimal

public BigDecimal asBigDecimal(Float value)
Description copied from interface: MathOperations
Create a BigDecimal representation of the supplied value.

Specified by:
asBigDecimal in interface MathOperations<Float>
Parameters:
value - the value that is to be converted to a BigDecimal
Returns:
the BigDecimal representation, or null if value is null

fromBigDecimal

public Float fromBigDecimal(BigDecimal value)
Description copied from interface: MathOperations
Convert the BigDecimal 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).

Specified by:
fromBigDecimal in interface MathOperations<Float>
Parameters:
value - the BigDecimal value
Returns:
the natural representation, or null if value is null

createZeroValue

public Float createZeroValue()
Description copied from interface: MathOperations
Create the object form of the "zero value". This is often used to create an uninitialized object.

Specified by:
createZeroValue in interface MathOperations<Float>
Returns:
the object that represents zero.

create

public Float create(int value)
Description copied from interface: MathOperations
Convert the integer representation into the natural object representation.

Specified by:
create in interface MathOperations<Float>
Parameters:
value - the integer value
Returns:
the object representation of the integer

create

public Float create(long value)
Description copied from interface: MathOperations
Convert the long representation into the natural object representation.

Specified by:
create in interface MathOperations<Float>
Parameters:
value - the long value
Returns:
the object representation of the long integer

create

public Float create(double value)
Description copied from interface: MathOperations
Convert the double representation into the natural object representation.

Specified by:
create in interface MathOperations<Float>
Parameters:
value - the double value
Returns:
the object representation of the floating point number

sqrt

public double sqrt(Float value)
Description copied from interface: MathOperations
Return the square root of the supplied operand.

Specified by:
sqrt in interface MathOperations<Float>
Parameters:
value - the value whose root is to be found; may not be null or 0
Returns:
the square root of the value

getComparator

public Comparator<Float> getComparator()
Description copied from interface: MathOperations
Return a Comparator for this operand class. The implementation is free to return the same comparator instance from multiple invocations of this method.

Specified by:
getComparator in interface MathOperations<Float>
Returns:
a comparator

random

public Float random(Float minimum,
                    Float maximum,
                    Random rng)
Description copied from interface: MathOperations
Generate a random instance within the specified range.

Specified by:
random in interface MathOperations<Float>
Parameters:
minimum - the minimum value, or null if the zero-value should be used for the minimum
maximum - the maximum value, or null if the zero-value should be used for the maximum
rng - the random number generator to use
Returns:
an instance of the operand class placed within the desired range using a random distribution, or null if this class does not support generating random instances

doubleValue

public double doubleValue(Float value)
Description copied from interface: MathOperations
Convert the value to a double. This may result in a loss of information depending upon the operand class.

Specified by:
doubleValue in interface MathOperations<Float>
Parameters:
value - the value
Returns:
the representation as a double

floatValue

public float floatValue(Float value)
Description copied from interface: MathOperations
Convert the value to a float. This may result in a loss of information depending upon the operand class.

Specified by:
floatValue in interface MathOperations<Float>
Parameters:
value - the value
Returns:
the representation as a float

intValue

public int intValue(Float value)
Description copied from interface: MathOperations
Convert the value to an integer. This may result in a loss of information depending upon the operand class.

Specified by:
intValue in interface MathOperations<Float>
Parameters:
value - the value
Returns:
the representation as an integer

longValue

public long longValue(Float value)
Description copied from interface: MathOperations
Convert the value to a long integer. This may result in a loss of information depending upon the operand class.

Specified by:
longValue in interface MathOperations<Float>
Parameters:
value - the value
Returns:
the representation as a long

shortValue

public short shortValue(Float value)
Description copied from interface: MathOperations
Convert the value to a short. This may result in a loss of information depending upon the operand class.

Specified by:
shortValue in interface MathOperations<Float>
Parameters:
value - the value
Returns:
the representation as a short

getExponentInScientificNotation

public int getExponentInScientificNotation(Float value)
Description copied from interface: MathOperations
Get the exponent if the number were written in exponential form.

Specified by:
getExponentInScientificNotation in interface MathOperations<Float>
Parameters:
value - the value
Returns:
the scale

roundUp

public Float roundUp(Float value,
                     int decimalShift)
Description copied from interface: MathOperations
Round up the supplied value to the desired scale. This process works (conceptually) by shifting the decimal point of the value by decimalShift 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.

Specified by:
roundUp in interface MathOperations<Float>
Parameters:
value - the value to be rounded
decimalShift - the number of places the decimal point should be shifted before rounding
Returns:
the rounded value

roundDown

public Float roundDown(Float value,
                       int decimalShift)
Description copied from interface: MathOperations
Round down the supplied value to the desired scale. This process works (conceptually) by shifting the decimal point of the value by decimalShift 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.

Specified by:
roundDown in interface MathOperations<Float>
Parameters:
value - the value to be rounded
decimalShift - the number of places the decimal point should be shifted before rounding
Returns:
the rounded value

keepSignificantFigures

public Float keepSignificantFigures(Float value,
                                    int numSigFigs)
Specified by:
keepSignificantFigures in interface MathOperations<Float>


Copyright © 2008-2009 JBoss, a division of Red Hat. All Rights Reserved.