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