Package org.bson.codecs
Class IterableCodecProvider
- java.lang.Object
-
- org.bson.codecs.IterableCodecProvider
-
- All Implemented Interfaces:
CodecProvider
public class IterableCodecProvider extends Object implements CodecProvider
ACodecProvider
for classes than implement theIterable
interface.- Since:
- 3.3
-
-
Constructor Summary
Constructors Constructor Description IterableCodecProvider()
Construct a new instance with a defaultBsonTypeClassMap
and noTransformer
.IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap)
Construct a new instance with the given instance ofBsonTypeClassMap
and noTransformer
.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
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
<T> Codec<T>
get(Class<T> clazz, CodecRegistry registry)
Get aCodec
using the given context, which includes, most importantly, the Class for which aCodec
is required.int
hashCode()
-
-
-
Constructor Detail
-
IterableCodecProvider
public IterableCodecProvider()
Construct a new instance with a defaultBsonTypeClassMap
and noTransformer
.
-
IterableCodecProvider
public IterableCodecProvider(Transformer valueTransformer)
Construct a new instance with a defaultBsonTypeClassMap
and the givenTransformer
. The transformer is used by the IterableCodec as a last step when decoding values.- Parameters:
valueTransformer
- the value transformer for decoded values
-
IterableCodecProvider
public IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap)
Construct a new instance with the given instance ofBsonTypeClassMap
and noTransformer
.- Parameters:
bsonTypeClassMap
- the non-nullBsonTypeClassMap
with which to construct instances ofDocumentCodec
andListCodec
-
IterableCodecProvider
public IterableCodecProvider(BsonTypeClassMap bsonTypeClassMap, Transformer valueTransformer)
Construct a new instance with the given instance ofBsonTypeClassMap
andTransformer
.- Parameters:
bsonTypeClassMap
- the non-nullBsonTypeClassMap
with which to construct instances ofDocumentCodec
andListCodec
.valueTransformer
- the value transformer for decoded values
-
-
Method Detail
-
get
public <T> Codec<T> get(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
-
-