Class FloatNumeral
java.lang.Object
me.datafox.dfxengine.math.numeral.FloatNumeral
- All Implemented Interfaces:
Comparable<Numeral>
,Numeral
Implementation of
Numeral
backed with a float
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionConversion fromfloat
toBigInteger
is done usingbigDecValue()
.toBigInteger()
, which uses theString
representation to round inaccuracies.boolean
canConvert
(NumeralType type) int
Compares this numeral with the specified numeral for order.convert
(NumeralType type) convertIfAllowed
(NumeralType type) double
float
protected org.slf4j.Logger
getType()
int
intValue()
long
toString()
-
Constructor Details
-
FloatNumeral
public FloatNumeral(float number) - Parameters:
number
-float
to be associated with this numeral- Throws:
IllegalArgumentException
- if thefloat
isNaN
or infinite.
-
-
Method Details
-
getNumber
- Returns:
- the
Number
backing this numeral
-
floatValue
public float floatValue()- Specified by:
floatValue
in interfaceNumeral
- Returns:
- the backing
float
of this numeral
-
bigIntValue
Conversion fromfloat
toBigInteger
is done usingbigDecValue()
.toBigInteger()
, which uses theString
representation to round inaccuracies.- Specified by:
bigIntValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
BigInteger
-
doubleValue
public double doubleValue()- Specified by:
doubleValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
double
-
bigDecValue
- Specified by:
bigDecValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
BigDecimal
-
getLogger
protected org.slf4j.Logger getLogger()- Returns:
Logger
for this numeral
-
getType
-
canConvert
- Specified by:
canConvert
in interfaceNumeral
- Parameters:
type
- type to be checked for- Returns:
true
if this numeral can be converted to the specified type- Throws:
NullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happen
-
convert
- Specified by:
convert
in interfaceNumeral
- Parameters:
type
- type for this numeral to be converted to- Returns:
- a numeral backed with the specified type
- Throws:
ExtendedArithmeticException
- if the value of this numeral is outside the provided type's boundsNullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happen
-
convertIfAllowed
- Specified by:
convertIfAllowed
in interfaceNumeral
- Parameters:
type
- type for this numeral to be converted to- Returns:
- a numeral backed with the specified type, unless the value of this numeral is outside the specified type's bounds, in which case this numeral is returned
- Throws:
NullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happen
-
toInteger
-
toDecimal
-
toSmallestType
- Specified by:
toSmallestType
in interfaceNumeral
- Returns:
- a numeral backed with the smallest type that can hold this numeral's value. This method does not convert between integer and decimal types.
-
intValue
public int intValue()- Specified by:
intValue
in interfaceNumeral
- Returns:
- the value of this numeral as an
int
- Throws:
ExtendedArithmeticException
- if the value of this numeral is smaller thanInteger.MIN_VALUE
or greater thanInteger.MAX_VALUE
-
longValue
public long longValue()- Specified by:
longValue
in interfaceNumeral
- Returns:
- the value of this numeral as a
long
- Throws:
ExtendedArithmeticException
- if the value of this numeral is smaller thanLong.MIN_VALUE
or greater thanLong.MAX_VALUE
-
toString
-
compareTo
Compares this numeral with the specified numeral for order. The numerals are compared usingNumerals.compare(Numeral, Numeral)
. Returns a negative integer, zero, or a positive integer as this numeral is less than, equal to, or greater than the specified numeral.- Specified by:
compareTo
in interfaceComparable<Numeral>
- Parameters:
other
- the numeral to be compared- Returns:
- a negative integer, zero, or a positive integer as this numeral is less than, equal to, or greater than the specified numeral
- Throws:
NullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the values ofNumeralType
. This should never happen
-