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 |
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.introspect |
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
|
Modifier and Type | Method and Description |
---|---|
static JsonCreator.Mode |
JsonCreator.Mode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonCreator.Mode[] |
JsonCreator.Mode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
JsonCreator.Mode |
AnnotationIntrospector.findCreatorAnnotation(MapperConfig<?> config,
Annotated a)
Method called to check whether potential Creator (constructor or static factory
method) has explicit annotation to indicate it as actual Creator; and if so,
which
JsonCreator.Mode to use. |
JsonCreator.Mode |
AnnotationIntrospector.findCreatorBinding(Annotated a)
|
Modifier and Type | Method and Description |
---|---|
JsonCreator.Mode |
JacksonAnnotationIntrospector.findCreatorAnnotation(MapperConfig<?> config,
Annotated a) |
JsonCreator.Mode |
AnnotationIntrospectorPair.findCreatorAnnotation(MapperConfig<?> config,
Annotated a) |
JsonCreator.Mode |
JacksonAnnotationIntrospector.findCreatorBinding(Annotated a)
Deprecated.
|
JsonCreator.Mode |
AnnotationIntrospectorPair.findCreatorBinding(Annotated a)
Deprecated.
|
Copyright © 2019 JBoss by Red Hat. All rights reserved.