Package | Description |
---|---|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
com.fasterxml.jackson.databind.cfg |
Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
com.fasterxml.jackson.databind ). |
com.fasterxml.jackson.databind.deser |
Contains implementation classes of deserialization part of
data binding.
|
com.fasterxml.jackson.databind.deser.std |
Contains public standard implementations of abstraction that
Jackson uses.
|
com.fasterxml.jackson.databind.introspect |
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
|
com.fasterxml.jackson.databind.ser |
Contains implementation classes of serialization part of
data binding.
|
com.fasterxml.jackson.databind.ser.std | |
com.fasterxml.jackson.databind.util |
Utility classes for Mapper package.
|
com.fasterxml.jackson.module.jaxb |
Package that contains support for using JAXB annotations for
configuring Jackson data-binding aspects.
|
Modifier and Type | Method and Description |
---|---|
Converter<Object,Object> |
DatabindContext.converterInstance(Annotated annotated,
Object converterDef)
Helper method to use to construct a
Converter , given a definition
that may be either actual converter instance, or Class for instantiating one. |
abstract Converter<Object,Object> |
BeanDescription.findDeserializationConverter()
Method for finding
Converter used for serializing instances
of this class. |
abstract Converter<Object,Object> |
BeanDescription.findSerializationConverter()
Method for finding
Converter used for serializing instances
of this class. |
Modifier and Type | Method and Description |
---|---|
Converter<?,?> |
HandlerInstantiator.converterInstance(MapperConfig<?> config,
Annotated annotated,
Class<?> implClass)
Method called to construct a Converter instance used for specified class.
|
Modifier and Type | Method and Description |
---|---|
protected Converter<Object,Object> |
DeserializerCache.findConverter(DeserializationContext ctxt,
Annotated a) |
Modifier and Type | Field and Description |
---|---|
protected Converter<Object,T> |
StdDelegatingDeserializer._converter |
Modifier and Type | Method and Description |
---|---|
protected StdDelegatingDeserializer<T> |
StdDelegatingDeserializer.withDelegate(Converter<Object,T> converter,
JavaType delegateType,
JsonDeserializer<?> delegateDeserializer)
Method used for creating resolved contextual instances.
|
Constructor and Description |
---|
StdDelegatingDeserializer(Converter<?,T> converter) |
StdDelegatingDeserializer(Converter<Object,T> converter,
JavaType delegateType,
JsonDeserializer<?> delegateDeserializer) |
Modifier and Type | Method and Description |
---|---|
Converter<Object,Object> |
BasicBeanDescription._createConverter(Object converterDef) |
Converter<Object,Object> |
BasicBeanDescription.findDeserializationConverter() |
Converter<Object,Object> |
BasicBeanDescription.findSerializationConverter() |
Modifier and Type | Method and Description |
---|---|
protected Converter<Object,Object> |
BasicSerializerFactory.findConverter(SerializerProvider prov,
Annotated a) |
Modifier and Type | Field and Description |
---|---|
protected Converter<Object,?> |
StdDelegatingSerializer._converter |
Modifier and Type | Method and Description |
---|---|
protected Converter<Object,?> |
StdDelegatingSerializer.getConverter() |
Modifier and Type | Method and Description |
---|---|
protected StdDelegatingSerializer |
StdDelegatingSerializer.withDelegate(Converter<Object,?> converter,
JavaType delegateType,
JsonSerializer<?> delegateSerializer)
Method used for creating resolved contextual instances.
|
Constructor and Description |
---|
StdDelegatingSerializer(Class<T> cls,
Converter<T,?> converter) |
StdDelegatingSerializer(Converter<?,?> converter) |
StdDelegatingSerializer(Converter<Object,?> converter,
JavaType delegateType,
JsonSerializer<?> delegateSerializer) |
Modifier and Type | Class and Description |
---|---|
static class |
Converter.None
This marker class is only to be used with annotations, to
indicate that no converter is to be used.
|
class |
StdConverter<IN,OUT>
Standard implementation of
Converter that supports explicit
type access, instead of relying type detection of generic type
parameters. |
Modifier and Type | Class and Description |
---|---|
class |
AdapterConverter |
Modifier and Type | Method and Description |
---|---|
protected Converter<Object,Object> |
JaxbAnnotationIntrospector._converter(XmlAdapter<?,?> adapter,
boolean forSerialization) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.