Package com.mongodb
Class DBRefCodec
- java.lang.Object
-
- com.mongodb.DBRefCodec
-
-
Constructor Summary
Constructors Constructor Description DBRefCodec(CodecRegistry registry)
Deprecated.Construct an instance with the given registry, which is used to encode the id of the referenced document.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description DBRef
decode(BsonReader reader, DecoderContext decoderContext)
Deprecated.Decodes a BSON value from the given reader into an instance of the type parameterT
.void
encode(BsonWriter writer, DBRef value, EncoderContext encoderContext)
Deprecated.Encode an instance of the type parameterT
into a BSON value.java.lang.Class<DBRef>
getEncoderClass()
Deprecated.Returns the Class instance that this encodes.
-
-
-
Constructor Detail
-
DBRefCodec
public DBRefCodec(CodecRegistry registry)
Deprecated.Construct an instance with the given registry, which is used to encode the id of the referenced document.- Parameters:
registry
- the non-null codec registry
-
-
Method Detail
-
encode
public void encode(BsonWriter writer, DBRef value, EncoderContext encoderContext)
Deprecated.Description copied from interface:Encoder
Encode an instance of the type parameterT
into a BSON value.
-
getEncoderClass
public java.lang.Class<DBRef> getEncoderClass()
Deprecated.Description copied from interface:Encoder
Returns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClass
in interfaceEncoder<DBRef>
- Returns:
- the Class instance that this encodes.
-
decode
public DBRef decode(BsonReader reader, DecoderContext decoderContext)
Deprecated.Description copied from interface:Decoder
Decodes a BSON value from the given reader into an instance of the type parameterT
.
-
-