public class ValueCodecProvider extends Object implements CodecProvider
| Constructor and Description | 
|---|
| ValueCodecProvider()A provider of Codecs for simple value types. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | equals(Object o) | 
| <T> Codec<T> | get(Class<T> clazz,
   CodecRegistry registry)Get a  Codecusing the given context, which includes, most importantly, the Class for which aCodecis required. | 
| int | hashCode() | 
public ValueCodecProvider()
public <T> Codec<T> get(Class<T> clazz, CodecRegistry registry)
CodecProviderCodec using the given context, which includes, most importantly, the Class for which a Codec is required.get in interface CodecProviderT - the type of the class for which a Codec is requiredclazz - the Class for which to get a Codecregistry - the registry to use for resolving dependent Codec instances