Package | Description |
---|---|
com.fasterxml.jackson.databind |
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParser |
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.jsontype.impl |
Package that contains standard implementations for
TypeResolverBuilder
and
TypeIdResolver . |
Modifier and Type | Class and Description |
---|---|
static class |
ObjectMapper.DefaultTypeResolverBuilder
Customized
TypeResolverBuilder that provides type resolver builders
used with so-called "default typing"
(see ObjectMapper.enableDefaultTyping() for details). |
Modifier and Type | Method and Description |
---|---|
protected StdTypeResolverBuilder |
JacksonAnnotationIntrospector._constructNoTypeResolverBuilder()
Helper method for dealing with "no type info" marker; can't be null
(as it'd be replaced by default typing)
|
protected StdTypeResolverBuilder |
JacksonAnnotationIntrospector._constructStdTypeResolverBuilder()
Helper method for constructing standard
TypeResolverBuilder
implementation. |
Modifier and Type | Method and Description |
---|---|
StdTypeResolverBuilder |
StdTypeResolverBuilder.defaultImpl(Class<?> defaultImpl) |
StdTypeResolverBuilder |
StdTypeResolverBuilder.inclusion(JsonTypeInfo.As includeAs) |
StdTypeResolverBuilder |
StdTypeResolverBuilder.init(JsonTypeInfo.Id idType,
TypeIdResolver idRes) |
static StdTypeResolverBuilder |
StdTypeResolverBuilder.noTypeInfoBuilder() |
StdTypeResolverBuilder |
StdTypeResolverBuilder.typeIdVisibility(boolean isVisible) |
StdTypeResolverBuilder |
StdTypeResolverBuilder.typeProperty(String typeIdPropName)
Method for constructing an instance with specified type property name
(property name to use for type id when using "as-property" inclusion).
|
Copyright © 2014 FasterXML. All Rights Reserved.