Package com.mongodb
Class DBRefCodec
java.lang.Object
com.mongodb.DBRefCodec
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
A Codec for DBRef instances.
- Since:
- 3.0
-
Constructor Summary
ConstructorsConstructorDescriptionDBRefCodec(CodecRegistry registry) Deprecated.Construct an instance with the given registry, which is used to encode the id of the referenced document. -
Method Summary
Modifier and TypeMethodDescriptiondecode(BsonReader reader, DecoderContext decoderContext) Deprecated.Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, DBRef value, EncoderContext encoderContext) Deprecated.Encode an instance of the type parameterTinto a BSON value.Deprecated.Returns the Class instance that this encodes.
-
Constructor Details
-
DBRefCodec
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 Details
-
encode
Deprecated.Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value. -
getEncoderClass
Deprecated.Description copied from interface:EncoderReturns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClassin interfaceEncoder<DBRef>- Returns:
- the Class instance that this encodes.
-
decode
Deprecated.Description copied from interface:DecoderDecodes a BSON value from the given reader into an instance of the type parameterT.
-