Package org.bson.codecs
Class IterableCodecProvider
- java.lang.Object
- 
- org.bson.codecs.IterableCodecProvider
 
- 
- All Implemented Interfaces:
- CodecProvider
 
 public class IterableCodecProvider extends Object implements CodecProvider ACodecProviderfor classes than implement theIterableinterface.- Since:
- 3.3
 
- 
- 
Constructor SummaryConstructors Constructor Description IterableCodecProvider()Construct a new instance with a defaultBsonTypeClassMapand noTransformer.IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap)Construct a new instance with the given instance ofBsonTypeClassMapand noTransformer.IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)Construct a new instance with the given instance ofBsonTypeClassMapandTransformer.IterableCodecProvider(Transformer valueTransformer)Construct a new instance with a defaultBsonTypeClassMapand the givenTransformer.
 - 
Method SummaryAll 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- 
IterableCodecProviderpublic IterableCodecProvider() Construct a new instance with a defaultBsonTypeClassMapand noTransformer.
 - 
IterableCodecProviderpublic IterableCodecProvider(Transformer valueTransformer) Construct a new instance with a defaultBsonTypeClassMapand the givenTransformer. The transformer is used by the IterableCodec as a last step when decoding values.- Parameters:
- valueTransformer- the value transformer for decoded values
 
 - 
IterableCodecProviderpublic IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap) Construct a new instance with the given instance ofBsonTypeClassMapand noTransformer.- Parameters:
- bsonTypeClassMap- the non-null- BsonTypeClassMapwith which to construct instances of- DocumentCodecand- ListCodec
 
 - 
IterableCodecProviderpublic IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer) Construct a new instance with the given instance ofBsonTypeClassMapandTransformer.- Parameters:
- bsonTypeClassMap- the non-null- BsonTypeClassMapwith which to construct instances of- DocumentCodecand- ListCodec.
- valueTransformer- the value transformer for decoded values
 
 
- 
 - 
Method Detail- 
getpublic <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 interface- CodecProvider
- Type Parameters:
- T- the type of the class for which a Codec is required
- Parameters:
- clazz- the Class for which to get a Codec
- registry- 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
 
 
- 
 
-