Constructor and Description |
---|
BsonArrayCodec(CodecRegistry codecRegistry)
Construct an instance with the given registry
|
Modifier and Type | Method and Description |
---|---|
BsonArray |
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,
BsonArray array,
EncoderContext encoderContext)
Encode an instance of the type parameter
T into a BSON value. |
Class<BsonArray> |
getEncoderClass()
Returns the Class instance that this encodes.
|
protected BsonValue |
readValue(BsonReader reader,
DecoderContext decoderContext)
This method may be overridden to change the behavior of reading the current value from the given
BsonReader . |
public BsonArrayCodec(CodecRegistry codecRegistry)
codecRegistry
- the codec registrypublic BsonArray decode(BsonReader reader, DecoderContext decoderContext)
Decoder
T
.public void encode(BsonWriter writer, BsonArray array, EncoderContext encoderContext)
Encoder
T
into a BSON value.public Class<BsonArray> getEncoderClass()
Encoder
getEncoderClass
in interface Encoder<BsonArray>
protected BsonValue readValue(BsonReader reader, DecoderContext decoderContext)
BsonReader
. It is required
that the value be fully consumed before returning.reader
- the read to read the value fromdecoderContext
- the decoder context