public final class BigDecimalCodec extends Object implements Codec<BigDecimal>
BigDecimal
objects.Constructor and Description |
---|
BigDecimalCodec() |
Modifier and Type | Method and Description |
---|---|
BigDecimal |
decode(BsonReader reader,
DecoderContext decoderContext)
Decodes a BSON value from the given reader into an instance of the type parameter
T . |
void |
encode(BsonWriter writer,
BigDecimal value,
EncoderContext encoderContext)
Encode an instance of the type parameter
T into a BSON value. |
Class<BigDecimal> |
getEncoderClass()
Returns the Class instance that this encodes.
|
public void encode(BsonWriter writer, BigDecimal value, EncoderContext encoderContext)
Encoder
T
into a BSON value.encode
in interface Encoder<BigDecimal>
writer
- the BSON writer to encode intovalue
- the value to encodeencoderContext
- the encoder contextpublic BigDecimal decode(BsonReader reader, DecoderContext decoderContext)
Decoder
T
.decode
in interface Decoder<BigDecimal>
reader
- the BSON readerdecoderContext
- the decoder contextT
.public Class<BigDecimal> getEncoderClass()
Encoder
getEncoderClass
in interface Encoder<BigDecimal>