Package org.bson.codecs
Class DocumentCodecProvider
- java.lang.Object
-
- org.bson.codecs.DocumentCodecProvider
-
- All Implemented Interfaces:
CodecProvider
public class DocumentCodecProvider extends Object implements CodecProvider
ACodecProviderfor the Document class and all the default Codec implementations on which it depends.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description DocumentCodecProvider()Construct a new instance with a defaultBsonTypeClassMap.DocumentCodecProvider(BsonTypeClassMap bsonTypeClassMap)Construct a new instance with the given instance ofBsonTypeClassMap.DocumentCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)Construct a new instance with the given instance ofBsonTypeClassMap.DocumentCodecProvider(Transformer valueTransformer)Construct a new instance with a defaultBsonTypeClassMapand the givenTransformer.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)<T> Codec<T>get(Class<T> clazz, CodecRegistry registry)Get aCodecusing the given context, which includes, most importantly, the Class for which aCodecis required.inthashCode()
-
-
-
Constructor Detail
-
DocumentCodecProvider
public DocumentCodecProvider()
Construct a new instance with a defaultBsonTypeClassMap.
-
DocumentCodecProvider
public DocumentCodecProvider(Transformer valueTransformer)
Construct a new instance with a defaultBsonTypeClassMapand the givenTransformer. The transformer is used by the DocumentCodec as a last step when decoding values.- Parameters:
valueTransformer- the value transformer for decoded values- See Also:
DocumentCodec(org.bson.codecs.configuration.CodecRegistry, BsonTypeClassMap, org.bson.Transformer)
-
DocumentCodecProvider
public DocumentCodecProvider(BsonTypeClassMap bsonTypeClassMap)
Construct a new instance with the given instance ofBsonTypeClassMap.- Parameters:
bsonTypeClassMap- the non-nullBsonTypeClassMapwith which to construct instances ofDocumentCodecandListCodec
-
DocumentCodecProvider
public DocumentCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the given instance ofBsonTypeClassMap.- Parameters:
bsonTypeClassMap- the non-nullBsonTypeClassMapwith which to construct instances ofDocumentCodecandListCodec.valueTransformer- the value transformer for decoded values
-
-
Method Detail
-
get
public <T> Codec<T> get(Class<T> clazz, CodecRegistry registry)
Description copied from interface:CodecProviderGet aCodecusing the given context, which includes, most importantly, the Class for which aCodecis required.- Specified by:
getin 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
-
-