Package org.bson.types
Class Decimal128
- java.lang.Object
 - 
- org.bson.types.Decimal128
 
 
- 
- All Implemented Interfaces:
 Serializable
public final class Decimal128 extends Object implements Serializable
A binary integer decimal representation of a 128-bit decimal value, supporting 34 decimal digits of significand and an exponent range of -6143 to +6144. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static Decimal128NaNA constant holding a Not-a-Number (NaN) value of typeDecimal128.static Decimal128NEGATIVE_INFINITYA constant holding the negative infinity of typeDecimal128.static Decimal128NEGATIVE_NaNA constant holding a negative Not-a-Number (-NaN) value of typeDecimal128.static Decimal128NEGATIVE_ZEROA constant holding a negative zero value of typeDecimal128.static Decimal128POSITIVE_INFINITYA constant holding the positive infinity of typeDecimal128.static Decimal128POSITIVE_ZEROA constant holding a postive zero value of typeDecimal128. 
- 
Constructor Summary
Constructors Constructor Description Decimal128(long value)Constructs a Decimal128 value representing the given long.Decimal128(BigDecimal value)Constructs a Decimal128 value representing the given BigDecimal. 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalbigDecimalValue()Gets a BigDecimal that is equivalent to this Decimal128.booleanequals(Object o)Returns true if the encoded representation of this instance is the same as the encoded representation ofo.static Decimal128fromIEEE754BIDEncoding(long high, long low)Create an instance with the given high and low order bits representing this Decimal128 as an IEEE 754-2008 128-bit decimal floating point using the BID encoding scheme.longgetHigh()Gets the high-order 64 bits of the IEEE 754-2008 128-bit decimal floating point encoding for this Decimal128, using the BID encoding scheme.longgetLow()Gets the low-order 64 bits of the IEEE 754-2008 128-bit decimal floating point encoding for this Decimal128, using the BID encoding scheme.inthashCode()booleanisFinite()Returns true if this Decimal128 is finite.booleanisInfinite()Returns true if this Decimal128 is infinite.booleanisNaN()Returns true if this Decimal128 is Not-A-Number (NaN).booleanisNegative()Returns true if this Decimal128 is negative.static Decimal128parse(String value)Returns a Decimal128 value representing the given String.StringtoString()Returns the String representation of the Decimal128 value. 
 - 
 
- 
- 
Field Detail
- 
POSITIVE_INFINITY
public static final Decimal128 POSITIVE_INFINITY
A constant holding the positive infinity of typeDecimal128. It is equal to the value return byDecimal128.valueOf("Infinity"). 
- 
NEGATIVE_INFINITY
public static final Decimal128 NEGATIVE_INFINITY
A constant holding the negative infinity of typeDecimal128. It is equal to the value return byDecimal128.valueOf("-Infinity"). 
- 
NEGATIVE_NaN
public static final Decimal128 NEGATIVE_NaN
A constant holding a negative Not-a-Number (-NaN) value of typeDecimal128. It is equal to the value return byDecimal128.valueOf("-NaN"). 
- 
NaN
public static final Decimal128 NaN
A constant holding a Not-a-Number (NaN) value of typeDecimal128. It is equal to the value return byDecimal128.valueOf("NaN"). 
- 
POSITIVE_ZERO
public static final Decimal128 POSITIVE_ZERO
A constant holding a postive zero value of typeDecimal128. It is equal to the value return byDecimal128.valueOf("0"). 
- 
NEGATIVE_ZERO
public static final Decimal128 NEGATIVE_ZERO
A constant holding a negative zero value of typeDecimal128. It is equal to the value return byDecimal128.valueOf("-0"). 
 - 
 
- 
Constructor Detail
- 
Decimal128
public Decimal128(long value)
Constructs a Decimal128 value representing the given long.- Parameters:
 value- the Decimal128 value represented as a long
 
- 
Decimal128
public Decimal128(BigDecimal value)
Constructs a Decimal128 value representing the given BigDecimal.- Parameters:
 value- the Decimal128 value represented as a BigDecimal- Throws:
 NumberFormatException- if the value is out of the Decimal128 range
 
 - 
 
- 
Method Detail
- 
parse
public static Decimal128 parse(String value)
Returns a Decimal128 value representing the given String.- Parameters:
 value- the Decimal128 value represented as a String- Returns:
 - the Decimal128 value representing the given String
 - Throws:
 NumberFormatException- if the value is out of the Decimal128 range- See Also:
 - From-String Specification
 
 
- 
fromIEEE754BIDEncoding
public static Decimal128 fromIEEE754BIDEncoding(long high, long low)
Create an instance with the given high and low order bits representing this Decimal128 as an IEEE 754-2008 128-bit decimal floating point using the BID encoding scheme.- Parameters:
 high- the high-order 64 bitslow- the low-order 64 bits- Returns:
 - the Decimal128 value representing the given high and low order bits
 
 
- 
getHigh
public long getHigh()
Gets the high-order 64 bits of the IEEE 754-2008 128-bit decimal floating point encoding for this Decimal128, using the BID encoding scheme.- Returns:
 - the high-order 64 bits of this Decimal128
 
 
- 
getLow
public long getLow()
Gets the low-order 64 bits of the IEEE 754-2008 128-bit decimal floating point encoding for this Decimal128, using the BID encoding scheme.- Returns:
 - the low-order 64 bits of this Decimal128
 
 
- 
bigDecimalValue
public BigDecimal bigDecimalValue()
Gets a BigDecimal that is equivalent to this Decimal128.- Returns:
 - a BigDecimal that is equivalent to this Decimal128
 - Throws:
 ArithmeticException- if the Decimal128 value is NaN, Infinity, -Infinity, or -0, none of which can be represented as a BigDecimal
 
- 
isNegative
public boolean isNegative()
Returns true if this Decimal128 is negative.- Returns:
 - true if this Decimal128 is negative
 
 
- 
isInfinite
public boolean isInfinite()
Returns true if this Decimal128 is infinite.- Returns:
 - true if this Decimal128 is infinite
 
 
- 
isFinite
public boolean isFinite()
Returns true if this Decimal128 is finite.- Returns:
 - true if this Decimal128 is finite
 
 
- 
isNaN
public boolean isNaN()
Returns true if this Decimal128 is Not-A-Number (NaN).- Returns:
 - true if this Decimal128 is Not-A-Number
 
 
- 
equals
public boolean equals(Object o)
Returns true if the encoded representation of this instance is the same as the encoded representation ofo.One consequence is that, whereas
Double.NaN != Double.NaN,new Decimal128("NaN").equals(new Decimal128("NaN")returns true.Another consequence is that, as with BigDecimal,
new Decimal128("1.0").equals(new Decimal128("1.00")returns false, because the precision is not the same and therefore the representation is not the same. 
- 
toString
public String toString()
Returns the String representation of the Decimal128 value.- Overrides:
 toStringin classObject- Returns:
 - the String representation
 - See Also:
 - To-String Sprecification
 
 
 - 
 
 -