Package org.bson.codecs
Class BsonCodecProvider
java.lang.Object
org.bson.codecs.BsonCodecProvider
- All Implemented Interfaces:
CodecProvider
A codec for encoding simple Bson interface implementations
- Since:
- 3.11
-
Constructor Details
-
BsonCodecProvider
public BsonCodecProvider()
-
-
Method Details
-
get
Description copied from interface:CodecProvider
Get aCodec
using the given context, which includes, most importantly, the Class for which aCodec
is required.This method is called by the driver only if
CodecProvider.get(Class, List, CodecRegistry)
is not overridden, or is overridden such that it calls this method.- Specified by:
get
in interfaceCodecProvider
- Type Parameters:
T
- the type of the class for which a Codec is required- Parameters:
clazz
- the Class for which to get a Codecregistry
- the registry to use for resolving dependent Codec instances- Returns:
- the Codec instance, which may be null, if this source is unable to provide one for the requested Class
-
toString
-