Uses of Interface
org.bson.codecs.configuration.CodecProvider
-
Packages that use CodecProvider Package Description org.bson.codecs This package contains all the default BSON codecs.org.bson.codecs.configuration This package contains codec configurations and the codec registry helperorg.bson.codecs.jsr310 This package contains classes specific to the JSR-310 Date and Time APIorg.bson.codecs.pojo This package contains classes specific to mapping user POJOs. -
-
Uses of CodecProvider in org.bson.codecs
Classes in org.bson.codecs that implement CodecProvider Modifier and Type Class Description class
BsonValueCodecProvider
ACodecProvider
for all subclass of BsonValue.class
DocumentCodecProvider
ACodecProvider
for the Document class and all the default Codec implementations on which it depends.class
IterableCodecProvider
ACodecProvider
for classes than implement theIterable
interface.class
MapCodecProvider
ACodecProvider
for the Map class and all the default Codec implementations on which it depends.class
UuidCodecProvider
ACodecProvider
for UUID Codecs with custom UUID representationsclass
ValueCodecProvider
A Codec provider for dynamically-typed value classes. -
Uses of CodecProvider in org.bson.codecs.configuration
Methods in org.bson.codecs.configuration with parameters of type CodecProvider Modifier and Type Method Description static CodecRegistry
CodecRegistries. fromProviders(CodecProvider... providers)
Creates aCodecRegistry
from the provided list ofCodecProvider
instances.Method parameters in org.bson.codecs.configuration with type arguments of type CodecProvider Modifier and Type Method Description static CodecRegistry
CodecRegistries. fromProviders(List<? extends CodecProvider> providers)
Creates aCodecRegistry
from the provided list ofCodecProvider
instances. -
Uses of CodecProvider in org.bson.codecs.jsr310
Classes in org.bson.codecs.jsr310 that implement CodecProvider Modifier and Type Class Description class
Jsr310CodecProvider
A CodecProvider for JSR-310 Date and Time API classes. -
Uses of CodecProvider in org.bson.codecs.pojo
Classes in org.bson.codecs.pojo that implement CodecProvider Modifier and Type Class Description class
PojoCodecProvider
Provides Codecs for registered POJOs via the ClassModel abstractions.
-