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