Package org.bson.codecs
Class ValueCodecProvider
- java.lang.Object
-
- org.bson.codecs.ValueCodecProvider
-
- All Implemented Interfaces:
CodecProvider
public class ValueCodecProvider extends Object implements CodecProvider
A Codec provider for dynamically-typed value classes. Other providers are needed for containers for maps and arrays. It provides the following codecs:- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description ValueCodecProvider()
A provider of Codecs for simple value types.
-
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()
-
-
-
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
-
-