Package | Description |
---|---|
com.fasterxml.jackson.annotation |
Public core annotations, most of which are used to configure how
Data Mapping/Binding works.
|
com.fasterxml.jackson.databind.deser.std |
Contains public standard implementations of abstraction that
Jackson uses.
|
com.fasterxml.jackson.databind.ser.std |
Modifier and Type | Method and Description |
---|---|
static JsonFormat.Feature |
JsonFormat.Feature.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonFormat.Feature[] |
JsonFormat.Feature.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static JsonFormat.Features |
JsonFormat.Features.construct(JsonFormat.Feature[] enabled,
JsonFormat.Feature[] disabled) |
static JsonFormat.Features |
JsonFormat.Features.construct(JsonFormat.Feature[] enabled,
JsonFormat.Feature[] disabled) |
Boolean |
JsonFormat.Features.get(JsonFormat.Feature f) |
Boolean |
JsonFormat.Value.getFeature(JsonFormat.Feature f)
Accessor for checking whether this format value has specific setting for
given feature.
|
JsonFormat.Features |
JsonFormat.Features.with(JsonFormat.Feature... features) |
JsonFormat.Value |
JsonFormat.Value.withFeature(JsonFormat.Feature f) |
JsonFormat.Features |
JsonFormat.Features.without(JsonFormat.Feature... features) |
JsonFormat.Value |
JsonFormat.Value.withoutFeature(JsonFormat.Feature f) |
Modifier and Type | Method and Description |
---|---|
protected Boolean |
StdDeserializer.findFormatFeature(DeserializationContext ctxt,
BeanProperty prop,
Class<?> typeForDefaults,
JsonFormat.Feature feat)
Convenience method that uses
StdDeserializer.findFormatOverrides(com.fasterxml.jackson.databind.DeserializationContext, com.fasterxml.jackson.databind.BeanProperty, java.lang.Class<?>) to find possible
defaults and/of overrides, and then calls
JsonFormat.Value.getFeature(feat)
to find whether that feature has been specifically marked as enabled or disabled. |
Modifier and Type | Method and Description |
---|---|
protected Boolean |
StdSerializer.findFormatFeature(SerializerProvider provider,
BeanProperty prop,
Class<?> typeForDefaults,
JsonFormat.Feature feat)
Convenience method that uses
StdSerializer.findFormatOverrides(com.fasterxml.jackson.databind.SerializerProvider, com.fasterxml.jackson.databind.BeanProperty, java.lang.Class<?>) to find possible
defaults and/of overrides, and then calls JsonFormat.Value.getFeature(...)
to find whether that feature has been specifically marked as enabled or disabled. |
Copyright © 2017 JBoss by Red Hat. All rights reserved.