public class BinaryAsBigDecimalField extends BinaryAsBigIntegerField implements BigDecimalAccessor
Constructor and Description |
---|
BinaryAsBigDecimalField(int offset,
int length,
int scale,
boolean signed)
Construct an instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.math.BigDecimal a,
java.math.BigDecimal b)
Compare two BigDecimal instances, possibly null, for equality.
|
java.math.BigDecimal |
getBigDecimal(byte[] buffer)
Answer a BigDecimal from the given byte array buffer,
at the offset of this field.
|
java.math.BigDecimal |
getBigDecimal(byte[] buffer,
int bufOffset)
Answer a BigDecimal from the given byte array buffer,
at the bufOffset + offset of this field.
|
int |
getScale() |
void |
putBigDecimal(java.math.BigDecimal value,
byte[] buffer)
Put a BigDecimal into the given byte array buffer,
at the offset of this field.
|
void |
putBigDecimal(java.math.BigDecimal value,
byte[] buffer,
int bufOffset)
Put a BigDecimal into the given byte array buffer,
at the bufOffset + offset of this field.
|
equals, getBigInteger, getBigInteger, getByteLength, getLength, getOffset, isSigned, putBigInteger, putBigInteger, setOffset
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getByteLength, getOffset, setOffset
public BinaryAsBigDecimalField(int offset, int length, int scale, boolean signed)
offset
- int the offset of this fieldlength
- int the size in bytes of this fieldscale
- the number of implied decimal digits to the right of the decimal pointsigned
- boolean true if the value is signed, false if unsignedpublic java.math.BigDecimal getBigDecimal(byte[] buffer)
getBigDecimal
in interface BigDecimalAccessor
buffer
- the byte arraypublic java.math.BigDecimal getBigDecimal(byte[] buffer, int bufOffset)
getBigDecimal
in interface BigDecimalAccessor
buffer
- the byte arraybufOffset
- the additional offset into the byte arraypublic void putBigDecimal(java.math.BigDecimal value, byte[] buffer) throws java.lang.IllegalArgumentException
putBigDecimal
in interface BigDecimalAccessor
value
- the BigDecimal valuebuffer
- the byte arrayjava.lang.IllegalArgumentException
- if the value is out of rangepublic void putBigDecimal(java.math.BigDecimal value, byte[] buffer, int bufOffset) throws java.lang.IllegalArgumentException
putBigDecimal
in interface BigDecimalAccessor
value
- the BigDecimal valuebuffer
- the byte arraybufOffset
- the additional offset into the byte arrayjava.lang.IllegalArgumentException
- if the value is out of rangepublic boolean equals(java.math.BigDecimal a, java.math.BigDecimal b)
a
- BigDecimalb
- BigDecimalpublic int getScale()
getScale
in class BinaryAsBigIntegerField