Uses of Interface
org.codehaus.jackson.map.jsontype.TypeResolverBuilder
-
Packages that use TypeResolverBuilder Package Description org.codehaus.jackson.map 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
org.codehaus.jackson.map.annotate Annotations that directly depend on Mapper classes (not just Jackson core) and are used for configuring Data Mapping functionality.org.codehaus.jackson.map.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations.org.codehaus.jackson.map.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization.org.codehaus.jackson.map.jsontype.impl Package that contains standard implementations forTypeResolverBuilder
andTypeIdResolver
.org.codehaus.jackson.xc 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 TypeResolverBuilder Modifier and Type Class Description static class
ObjectMapper.DefaultTypeResolverBuilder
CustomizedTypeResolverBuilder
that provides type resolver builders used with so-called "default typing" (seeObjectMapper.enableDefaultTyping()
for details).Fields in org.codehaus.jackson.map declared as TypeResolverBuilder Modifier and Type Field Description protected 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 TypeResolverBuilder Modifier and Type Method Description TypeResolverBuilder<?>
AnnotationIntrospector. 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.TypeResolverBuilder<?>
AnnotationIntrospector.Pair. findPropertyContentTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)
TypeResolverBuilder<?>
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.TypeResolverBuilder<?>
AnnotationIntrospector.Pair. findPropertyTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)
TypeResolverBuilder<?>
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.TypeResolverBuilder<?>
AnnotationIntrospector.Pair. findTypeResolver(MapperConfig<?> config, AnnotatedClass ac, JavaType baseType)
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).TypeResolverBuilder<?>
MapperConfig.Base. getTypeResolverBuilder()
abstract TypeResolverBuilder<?>
HandlerInstantiator. typeResolverBuilderInstance(MapperConfig<?> config, Annotated annotated, java.lang.Class<? extends TypeResolverBuilder<?>> builderClass)
Method called to get an instance of TypeResolverBuilder of specified type.TypeResolverBuilder<?>
MapperConfig. typeResolverBuilderInstance(Annotated annotated, java.lang.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 TypeResolverBuilder Modifier and Type Method Description ObjectMapper
ObjectMapper. 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
DeserializationConfig. withTypeResolverBuilder(TypeResolverBuilder<?> trb)
MapperConfig.Base
MapperConfig.Base. withTypeResolverBuilder(TypeResolverBuilder<?> typer)
abstract T
MapperConfig. withTypeResolverBuilder(TypeResolverBuilder<?> trb)
Method for constructing and returning a new instance with differentTypeResolverBuilder
to use.SerializationConfig
SerializationConfig. withTypeResolverBuilder(TypeResolverBuilder<?> trb)
Method parameters in org.codehaus.jackson.map with type arguments of type TypeResolverBuilder Modifier and Type Method Description abstract TypeResolverBuilder<?>
HandlerInstantiator. typeResolverBuilderInstance(MapperConfig<?> config, Annotated annotated, java.lang.Class<? extends TypeResolverBuilder<?>> builderClass)
Method called to get an instance of TypeResolverBuilder of specified type.TypeResolverBuilder<?>
MapperConfig. typeResolverBuilderInstance(Annotated annotated, java.lang.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 TypeResolverBuilder Constructor Description Base(ClassIntrospector<? extends BeanDescription> ci, AnnotationIntrospector ai, VisibilityChecker<?> vc, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, java.text.DateFormat dateFormat, HandlerInstantiator hi)
-
Uses of TypeResolverBuilder in org.codehaus.jackson.map.annotate
Methods in org.codehaus.jackson.map.annotate that return types with arguments of type TypeResolverBuilder Modifier and Type Method Description java.lang.Class<? extends TypeResolverBuilder<?>>
value()
Defines implementation class ofTypeResolverBuilder
which is used to construct actualTypeDeserializer
andTypeDeserializer
instances that handle reading and writing addition type information needed to support polymorphic deserialization. -
Uses of TypeResolverBuilder in org.codehaus.jackson.map.introspect
Methods in org.codehaus.jackson.map.introspect that return TypeResolverBuilder Modifier and Type Method Description protected 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.TypeResolverBuilder<?>
JacksonAnnotationIntrospector. findPropertyContentTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType containerType)
Since 1.7, it is possible to useJsonTypeInfo
from a property too.TypeResolverBuilder<?>
JacksonAnnotationIntrospector. findPropertyTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)
Since 1.7, it is possible to useJsonTypeInfo
from a property too.TypeResolverBuilder<?>
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 TypeResolverBuilder Modifier and Type Interface Description interface
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 Modifier and Type Class Description class
StdTypeResolverBuilder
DefaultTypeResolverBuilder
implementation. -
Uses of TypeResolverBuilder in org.codehaus.jackson.xc
Methods in org.codehaus.jackson.xc that return TypeResolverBuilder Modifier and Type Method Description protected TypeResolverBuilder<?>
JaxbAnnotationIntrospector. _typeResolverFromXmlElements(AnnotatedMember am)
TypeResolverBuilder<?>
JaxbAnnotationIntrospector. findPropertyContentTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType containerType)
TypeResolverBuilder<?>
JaxbAnnotationIntrospector. findPropertyTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)
TypeResolverBuilder<?>
JaxbAnnotationIntrospector. findTypeResolver(MapperConfig<?> config, AnnotatedClass ac, JavaType baseType)
-