Package | Description |
---|---|
com.fasterxml.jackson.databind.deser.impl |
Contains those implementation classes of deserialization part of
data binding that are not considered part of public or semi-public
interfaces.
|
Modifier and Type | Field and Description |
---|---|
private static NullsConstantProvider |
NullsConstantProvider.NULLER |
private static NullsConstantProvider |
NullsConstantProvider.SKIPPER |
Modifier and Type | Method and Description |
---|---|
static NullsConstantProvider |
NullsConstantProvider.forValue(java.lang.Object nvl) |
static NullsConstantProvider |
NullsConstantProvider.nuller() |
static NullsConstantProvider |
NullsConstantProvider.skipper()
Static accessor for a stateless instance used as marker, to indicate
that all input `null` values should be skipped (ignored), so that
no corresponding property value is set (with POJOs), and no content
values (array/Collection elements, Map entries) are added.
|