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