Package org.bson.codecs
Class BsonCodecProvider
- java.lang.Object
-
- org.bson.codecs.BsonCodecProvider
-
- All Implemented Interfaces:
CodecProvider
public class BsonCodecProvider extends java.lang.Object implements CodecProvider
A codec for encoding simple Bson interface implementations- Since:
- 3.11
-
-
Constructor Summary
Constructors Constructor Description BsonCodecProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Codec<T>
get(java.lang.Class<T> clazz, CodecRegistry registry)
Get aCodec
using the given context, which includes, most importantly, the Class for which aCodec
is required.
-
-
-
Method Detail
-
get
public <T> Codec<T> get(java.lang.Class<T> clazz, CodecRegistry registry)
Description copied from interface:CodecProvider
Get aCodec
using the given context, which includes, most importantly, the Class for which aCodec
is required.- 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
-
-