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