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
JsonParserPackage that contains standard implementations for
TypeResolverBuilder
and
TypeIdResolver.Package that implements "interface materializer" functionality, whereby
abstract classes and interfaces can be used as-is, and framework constructs
implementations as needed.
-
Uses of TypeFactory in org.codehaus.jackson.map
Fields in org.codehaus.jackson.map declared as TypeFactoryModifier and TypeFieldDescriptionprotected final TypeFactoryMapperConfig.Base._typeFactorySpecific factory used for creatingJavaTypeinstances; needed to allow modules to add more custom type handling (mostly to support types of non-Java JVM languages)protected TypeFactoryObjectMapper._typeFactorySpecific factory used for creatingJavaTypeinstances; 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 TypeFactoryMapperConfig.getTypeFactory()ObjectMapper.getTypeFactory()Accessor for getting currently configuredTypeFactoryinstance.Methods in org.codehaus.jackson.map with parameters of type TypeFactoryModifier and TypeMethodDescriptionObjectMapper.setTypeFactory(TypeFactory f) Method that can be used to overrideTypeFactoryinstance used by this mapper.DeserializationConfig.withTypeFactory(TypeFactory tf) MapperConfig.Base.withTypeFactory(TypeFactory tf) abstract TMapperConfig.withTypeFactory(TypeFactory typeFactory) Method for constructing and returning a new instance with differentTypeFactoryto 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.protectedMapperConfig(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) protectedMinimalClassNameIdResolver(JavaType baseType, TypeFactory typeFactory) protectedTypeIdResolverBase(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 TypeFactoryTypeBindings._typeFactoryFactory to use for constructing resolved related types.static final TypeFactoryTypeFactory.instanceDeprecated.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 TypeFactoryTypeFactory.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 JavaTypeTypeModifier.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) -
Uses of TypeFactory in org.codehaus.jackson.mrbean
Fields in org.codehaus.jackson.mrbean declared as TypeFactory