Uses of Class
org.codehaus.jackson.map.type.TypeFactory
-
Packages that use TypeFactory 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.jsontype.impl Package that contains standard implementations forTypeResolverBuilder
andTypeIdResolver
.org.codehaus.jackson.map.type Package that contains concrete implementations ofJavaType
, as well as the factory (TypeFactory
) for constructing instances from various input data types (likeClass
,Type
) and programmatically (for structured types, arrays,List
s andMap
s).org.codehaus.jackson.mrbean 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 TypeFactory Modifier and Type Field Description protected 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 TypeFactory Modifier and Type Method Description TypeFactory
DeserializationContext. getTypeFactory()
TypeFactory
MapperConfig.Base. getTypeFactory()
TypeFactory
MapperConfig. getTypeFactory()
TypeFactory
ObjectMapper. getTypeFactory()
Accessor for getting currently configuredTypeFactory
instance.Methods in org.codehaus.jackson.map with parameters of type TypeFactory Modifier and Type Method Description ObjectMapper
ObjectMapper. setTypeFactory(TypeFactory f)
Method that can be used to overrideTypeFactory
instance used by this mapper.DeserializationConfig
DeserializationConfig. withTypeFactory(TypeFactory tf)
MapperConfig.Base
MapperConfig.Base. withTypeFactory(TypeFactory tf)
abstract T
MapperConfig. withTypeFactory(TypeFactory typeFactory)
Method for constructing and returning a new instance with differentTypeFactory
to use.SerializationConfig
SerializationConfig. withTypeFactory(TypeFactory tf)
-
Uses of TypeFactory in org.codehaus.jackson.map.jsontype.impl
Fields in org.codehaus.jackson.map.jsontype.impl declared as TypeFactory Modifier and Type Field Description protected TypeFactory
TypeIdResolverBase. _typeFactory
Constructors in org.codehaus.jackson.map.jsontype.impl with parameters of type TypeFactory Constructor Description ClassNameIdResolver(JavaType baseType, TypeFactory typeFactory)
MinimalClassNameIdResolver(JavaType baseType, TypeFactory typeFactory)
TypeIdResolverBase(JavaType baseType, TypeFactory typeFactory)
-
Uses of TypeFactory in org.codehaus.jackson.map.type
Fields in org.codehaus.jackson.map.type declared as TypeFactory Modifier and Type Field Description protected TypeFactory
TypeBindings. _typeFactory
Factory to use for constructing resolved related types.static 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 TypeFactory Modifier and Type Method Description static TypeFactory
TypeFactory. defaultInstance()
Method used to access the globally shared instance, which has no custom configuration.TypeFactory
TypeFactory. withModifier(TypeModifier mod)
Methods in org.codehaus.jackson.map.type with parameters of type TypeFactory Modifier and Type Method Description abstract JavaType
TypeModifier. modifyType(JavaType type, java.lang.reflect.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 TypeFactory Constructor Description TypeBindings(TypeFactory typeFactory, java.lang.Class<?> cc)
TypeBindings(TypeFactory typeFactory, JavaType type)
TypeParser(TypeFactory f)
-
Uses of TypeFactory in org.codehaus.jackson.mrbean
Fields in org.codehaus.jackson.mrbean declared as TypeFactory Modifier and Type Field Description protected TypeFactory
BeanBuilder. _typeFactory
-