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 ). |
Modifier and Type | Method and Description |
---|---|
CoercionAction |
DeserializationContext.findCoercionAction(LogicalType targetType,
Class<?> targetClass,
CoercionInputShape inputShape)
General-purpose accessor for finding what to do when specified coercion
from shape that is now always allowed to be coerced from is requested.
|
CoercionAction |
DeserializationConfig.findCoercionAction(LogicalType targetType,
Class<?> targetClass,
CoercionInputShape inputShape)
General-purpose accessor for finding what to do when specified coercion
from shape that is now always allowed to be coerced from is requested.
|
Modifier and Type | Method and Description |
---|---|
static CoercionInputShape |
CoercionInputShape.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoercionInputShape[] |
CoercionInputShape.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
CoercionAction |
CoercionConfig.findAction(CoercionInputShape shape) |
CoercionAction |
CoercionConfigs.findCoercion(DeserializationConfig config,
LogicalType targetType,
Class<?> targetClass,
CoercionInputShape inputShape)
General-purpose accessor for finding what to do when specified coercion
from shape that is now always allowed to be coerced from is requested.
|
MutableCoercionConfig |
MutableCoercionConfig.setCoercion(CoercionInputShape shape,
CoercionAction action) |
Copyright © 2008–2020 FasterXML. All rights reserved.