Uses of Interface
org.bson.Transformer
-
Packages that use Transformer Package Description org.bson Contains the base BSON classes.org.bson.codecs This package contains all the default BSON codecs. -
-
Uses of Transformer in org.bson
Methods in org.bson that return types with arguments of type Transformer Modifier and Type Method Description static List<Transformer>
BSON. getDecodingHooks(Class<?> clazz)
Deprecated.Returns the decoding hook(s) associated with the specific classstatic List<Transformer>
BSON. getEncodingHooks(Class<?> clazz)
Deprecated.Returns the encoding hook(s) associated with the specified class.Methods in org.bson with parameters of type Transformer Modifier and Type Method Description static void
BSON. addDecodingHook(Class<?> clazz, Transformer transformer)
Deprecated.Registers aTransformer
to use when decoding a specific class from BSON.static void
BSON. addEncodingHook(Class<?> clazz, Transformer transformer)
Deprecated.Registers aTransformer
to use to encode a specific class into BSON.static void
BSON. removeDecodingHook(Class<?> clazz, Transformer transformer)
Deprecated.Remove a specific encoding hook for a specific class.static void
BSON. removeEncodingHook(Class<?> clazz, Transformer transformer)
Deprecated.Remove a specific encoding hook for a specific class. -
Uses of Transformer in org.bson.codecs
Constructors in org.bson.codecs with parameters of type Transformer Constructor Description DocumentCodec(CodecRegistry registry, BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the given registry and BSON type class map.DocumentCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the given instance ofBsonTypeClassMap
.DocumentCodecProvider(Transformer valueTransformer)
Construct a new instance with a defaultBsonTypeClassMap
and the givenTransformer
.IterableCodec(CodecRegistry registry, BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the givenCodecRegistry
andBsonTypeClassMap
.IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the given instance ofBsonTypeClassMap
andTransformer
.IterableCodecProvider(Transformer valueTransformer)
Construct a new instance with a defaultBsonTypeClassMap
and the givenTransformer
.MapCodec(CodecRegistry registry, BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the given registry and BSON type class map.MapCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the given instance ofBsonTypeClassMap
.MapCodecProvider(Transformer valueTransformer)
Construct a new instance with a defaultBsonTypeClassMap
and the givenTransformer
.
-