Uses of Class
org.codehaus.jackson.map.type.TypeFactory
Packages that use TypeFactory
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
Package that contains standard implementations for
TypeResolverBuilder
and
TypeIdResolver
.-
Uses of TypeFactory in org.codehaus.jackson.map
Fields in org.codehaus.jackson.map declared as TypeFactoryModifier and TypeFieldDescriptionprotected final TypeFactory
MapperConfig.Base._typeFactory
Specific factory used for creatingJavaType
instances; needed to allow modules to add more custom type handling (mostly to support types of non-Java JVM languages)protected TypeFactory
ObjectMapper._typeFactory
Specific factory used for creatingJavaType
instances; needed to allow modules to add more custom type handling (mostly to support types of non-Java JVM languages)Methods in org.codehaus.jackson.map that return TypeFactoryModifier and TypeMethodDescriptionDeserializationContext.getTypeFactory()
MapperConfig.Base.getTypeFactory()
final TypeFactory
MapperConfig.getTypeFactory()
ObjectMapper.getTypeFactory()
Accessor for getting currently configuredTypeFactory
instance.Methods in org.codehaus.jackson.map with parameters of type TypeFactoryModifier and TypeMethodDescriptionObjectMapper.setTypeFactory
(TypeFactory f) Method that can be used to overrideTypeFactory
instance used by this mapper.DeserializationConfig.withTypeFactory
(TypeFactory tf) MapperConfig.Base.withTypeFactory
(TypeFactory tf) abstract T
MapperConfig.withTypeFactory
(TypeFactory typeFactory) Method for constructing and returning a new instance with differentTypeFactory
to use.SerializationConfig.withTypeFactory
(TypeFactory tf) Constructors in org.codehaus.jackson.map with parameters of type TypeFactoryModifierConstructorDescriptionBase
(ClassIntrospector<? extends BeanDescription> ci, AnnotationIntrospector ai, VisibilityChecker<?> vc, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, DateFormat dateFormat, HandlerInstantiator hi) DeserializationConfig
(ClassIntrospector<? extends BeanDescription> intr, AnnotationIntrospector annIntr, VisibilityChecker<?> vc, SubtypeResolver subtypeResolver, PropertyNamingStrategy propertyNamingStrategy, TypeFactory typeFactory, HandlerInstantiator handlerInstantiator) Constructor used by ObjectMapper to create default configuration object instance.protected
MapperConfig
(ClassIntrospector<? extends BeanDescription> ci, AnnotationIntrospector ai, VisibilityChecker<?> vc, SubtypeResolver str, PropertyNamingStrategy pns, TypeFactory tf, HandlerInstantiator hi) SerializationConfig
(ClassIntrospector<? extends BeanDescription> intr, AnnotationIntrospector annIntr, VisibilityChecker<?> vc, SubtypeResolver subtypeResolver, PropertyNamingStrategy propertyNamingStrategy, TypeFactory typeFactory, HandlerInstantiator handlerInstantiator) Constructor used by ObjectMapper to create default configuration object instance. -
Uses of TypeFactory in org.codehaus.jackson.map.jsontype.impl
Fields in org.codehaus.jackson.map.jsontype.impl declared as TypeFactoryConstructors in org.codehaus.jackson.map.jsontype.impl with parameters of type TypeFactoryModifierConstructorDescriptionClassNameIdResolver
(JavaType baseType, TypeFactory typeFactory) protected
MinimalClassNameIdResolver
(JavaType baseType, TypeFactory typeFactory) protected
TypeIdResolverBase
(JavaType baseType, TypeFactory typeFactory) -
Uses of TypeFactory in org.codehaus.jackson.map.type
Fields in org.codehaus.jackson.map.type declared as TypeFactoryModifier and TypeFieldDescriptionprotected final TypeFactory
TypeBindings._typeFactory
Factory to use for constructing resolved related types.static final TypeFactory
TypeFactory.instance
Deprecated.As of 1.8, should use a per-ObjectMapper instance instead of global singletonMethods in org.codehaus.jackson.map.type that return TypeFactoryModifier and TypeMethodDescriptionstatic TypeFactory
TypeFactory.defaultInstance()
Method used to access the globally shared instance, which has no custom configuration.TypeFactory.withModifier
(TypeModifier mod) Methods in org.codehaus.jackson.map.type with parameters of type TypeFactoryModifier and TypeMethodDescriptionabstract JavaType
TypeModifier.modifyType
(JavaType type, Type jdkType, TypeBindings context, TypeFactory typeFactory) Method called to let modifier change constructed type definition.Constructors in org.codehaus.jackson.map.type with parameters of type TypeFactoryModifierConstructorDescriptionTypeBindings
(TypeFactory typeFactory, Class<?> cc) TypeBindings
(TypeFactory typeFactory, JavaType type)