Constructor and Description |
---|
BsonValueCodec()
Creates a new instance with a default codec registry that uses the
BsonValueCodecProvider . |
BsonValueCodec(CodecRegistry codecRegistry)
Creates a new instance initialised with the given codec registry.
|
Modifier and Type | Method and Description |
---|---|
BsonValue |
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,
BsonValue value,
EncoderContext encoderContext)
Encode an instance of the type parameter
T into a BSON value. |
Class<BsonValue> |
getEncoderClass()
Returns the Class instance that this encodes.
|
public BsonValueCodec()
BsonValueCodecProvider
.public BsonValueCodec(CodecRegistry codecRegistry)
codecRegistry
- the CodecRegistry
to use to look up the codecs for encoding and decoding to/from BSONpublic BsonValue decode(BsonReader reader, DecoderContext decoderContext)
Decoder
T
.public void encode(BsonWriter writer, BsonValue value, EncoderContext encoderContext)
Encoder
T
into a BSON value.public Class<BsonValue> getEncoderClass()
Encoder
getEncoderClass
in interface Encoder<BsonValue>