Uses of Interface
org.codehaus.jackson.map.jsontype.TypeResolverBuilder
Packages that use TypeResolverBuilder
Package
Description
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
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
Package that contains interfaces that define how to implement
functionality for dynamically resolving type during deserialization.
Package that contains standard implementations for
TypeResolverBuilder
and
TypeIdResolver
.Package that contains XML Compatibility functionality for Jackson, such
as handlers for JAXB annotations
-
Uses of TypeResolverBuilder in org.codehaus.jackson.map
Classes in org.codehaus.jackson.map that implement TypeResolverBuilderModifier and TypeClassDescriptionstatic class
CustomizedTypeResolverBuilder
that provides type resolver builders used with so-called "default typing" (seeObjectMapper.enableDefaultTyping()
for details).Fields in org.codehaus.jackson.map declared as TypeResolverBuilderModifier and TypeFieldDescriptionprotected final TypeResolverBuilder
<?> MapperConfig.Base._typeResolverBuilder
Type information handler used for "untyped" values (ones declared to have typeObject.class
)Methods in org.codehaus.jackson.map that return TypeResolverBuilderModifier and TypeMethodDescriptionAnnotationIntrospector.findPropertyContentTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType containerType) Method for checking if given structured property entity (field or method that has nominal value of Map, Collection or array type) has annotations that indicate that specific type resolver is to be used for handling type information of contained values.AnnotationIntrospector.Pair.findPropertyContentTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) AnnotationIntrospector.findPropertyTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) Method for checking if given property entity (field or method) has annotations that indicate that specific type resolver is to be used for handling instances.AnnotationIntrospector.Pair.findPropertyTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) AnnotationIntrospector.findTypeResolver
(MapperConfig<?> config, AnnotatedClass ac, JavaType baseType) Method for checking if given class has annotations that indicate that specific type resolver is to be used for handling instances.AnnotationIntrospector.Pair.findTypeResolver
(MapperConfig<?> config, AnnotatedClass ac, JavaType baseType) final TypeResolverBuilder
<?> MapperConfig.getDefaultTyper
(JavaType baseType) Method called to locate a type info handler for types that do not have one explicitly declared via annotations (or other configuration).MapperConfig.Base.getTypeResolverBuilder()
abstract TypeResolverBuilder
<?> HandlerInstantiator.typeResolverBuilderInstance
(MapperConfig<?> config, Annotated annotated, Class<? extends TypeResolverBuilder<?>> builderClass) Method called to get an instance of TypeResolverBuilder of specified type.MapperConfig.typeResolverBuilderInstance
(Annotated annotated, Class<? extends TypeResolverBuilder<?>> builderClass) Method that can be called to obtain an instance ofTypeIdResolver
of specified type.Methods in org.codehaus.jackson.map with parameters of type TypeResolverBuilderModifier and TypeMethodDescriptionObjectMapper.setDefaultTyping
(TypeResolverBuilder<?> typer) Method for enabling automatic inclusion of type information, using specified handler object for determining which types this affects, as well as details of how information is embedded.DeserializationConfig.withTypeResolverBuilder
(TypeResolverBuilder<?> trb) MapperConfig.Base.withTypeResolverBuilder
(TypeResolverBuilder<?> typer) abstract T
MapperConfig.withTypeResolverBuilder
(TypeResolverBuilder<?> trb) Method for constructing and returning a new instance with differentTypeResolverBuilder
to use.SerializationConfig.withTypeResolverBuilder
(TypeResolverBuilder<?> trb) Method parameters in org.codehaus.jackson.map with type arguments of type TypeResolverBuilderModifier and TypeMethodDescriptionabstract TypeResolverBuilder
<?> HandlerInstantiator.typeResolverBuilderInstance
(MapperConfig<?> config, Annotated annotated, Class<? extends TypeResolverBuilder<?>> builderClass) Method called to get an instance of TypeResolverBuilder of specified type.MapperConfig.typeResolverBuilderInstance
(Annotated annotated, Class<? extends TypeResolverBuilder<?>> builderClass) Method that can be called to obtain an instance ofTypeIdResolver
of specified type.Constructors in org.codehaus.jackson.map with parameters of type TypeResolverBuilderModifierConstructorDescriptionBase
(ClassIntrospector<? extends BeanDescription> ci, AnnotationIntrospector ai, VisibilityChecker<?> vc, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, DateFormat dateFormat, HandlerInstantiator hi) -
Uses of TypeResolverBuilder in org.codehaus.jackson.map.introspect
Methods in org.codehaus.jackson.map.introspect that return TypeResolverBuilderModifier and TypeMethodDescriptionprotected TypeResolverBuilder
<?> JacksonAnnotationIntrospector._findTypeResolver
(MapperConfig<?> config, Annotated ann, JavaType baseType) Helper method called to construct and initialize instance ofTypeResolverBuilder
if given annotated element indicates one is needed.JacksonAnnotationIntrospector.findPropertyContentTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType containerType) Since 1.7, it is possible to useJsonTypeInfo
from a property too.JacksonAnnotationIntrospector.findPropertyTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) Since 1.7, it is possible to useJsonTypeInfo
from a property too.JacksonAnnotationIntrospector.findTypeResolver
(MapperConfig<?> config, AnnotatedClass ac, JavaType baseType) -
Uses of TypeResolverBuilder in org.codehaus.jackson.map.jsontype
Classes in org.codehaus.jackson.map.jsontype with type parameters of type TypeResolverBuilderModifier and TypeInterfaceDescriptioninterface
TypeResolverBuilder<T extends TypeResolverBuilder<T>>
Interface that defines builders that are configured based on annotations (likeJsonTypeInfo
or JAXB annotations), and produce type serializers and deserializers used for handling type information embedded in JSON to allow for safe polymorphic type handling. -
Uses of TypeResolverBuilder in org.codehaus.jackson.map.jsontype.impl
Classes in org.codehaus.jackson.map.jsontype.impl that implement TypeResolverBuilder -
Uses of TypeResolverBuilder in org.codehaus.jackson.xc
Methods in org.codehaus.jackson.xc that return TypeResolverBuilderModifier and TypeMethodDescriptionprotected TypeResolverBuilder
<?> JaxbAnnotationIntrospector._typeResolverFromXmlElements
(AnnotatedMember am) JaxbAnnotationIntrospector.findPropertyContentTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType containerType) JaxbAnnotationIntrospector.findPropertyTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) JaxbAnnotationIntrospector.findTypeResolver
(MapperConfig<?> config, AnnotatedClass ac, JavaType baseType)