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 viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.map.jsontype.impl Package that contains standard implementations forTypeResolverBuilderandTypeIdResolver.org.codehaus.jackson.map.type -
-
Uses of TypeFactory in org.codehaus.jackson.map
Fields in org.codehaus.jackson.map declared as TypeFactory Modifier and Type Field Description protected 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 TypeFactory Modifier and Type Method Description TypeFactoryDeserializationContext. getTypeFactory()TypeFactoryMapperConfig.Base. getTypeFactory()TypeFactoryMapperConfig. getTypeFactory()TypeFactoryObjectMapper. getTypeFactory()Accessor for getting currently configuredTypeFactoryinstance.Methods in org.codehaus.jackson.map with parameters of type TypeFactory Modifier and Type Method Description ObjectMapperObjectMapper. setTypeFactory(TypeFactory f)Method that can be used to overrideTypeFactoryinstance used by this mapper.DeserializationConfigDeserializationConfig. withTypeFactory(TypeFactory tf)MapperConfig.BaseMapperConfig.Base. withTypeFactory(TypeFactory tf)abstract TMapperConfig. withTypeFactory(TypeFactory typeFactory)Method for constructing and returning a new instance with differentTypeFactoryto use.SerializationConfigSerializationConfig. 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 TypeFactoryTypeIdResolverBase. _typeFactoryConstructors 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 TypeFactoryTypeBindings. _typeFactoryFactory to use for constructing resolved related types.static TypeFactoryTypeFactory. instanceDeprecated.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 TypeFactoryTypeFactory. defaultInstance()Method used to access the globally shared instance, which has no custom configuration.TypeFactoryTypeFactory. withModifier(TypeModifier mod)Methods in org.codehaus.jackson.map.type with parameters of type TypeFactory Modifier and Type Method Description abstract 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 TypeFactory Constructor Description TypeBindings(TypeFactory typeFactory, Class<?> cc)TypeBindings(TypeFactory typeFactory, JavaType type)TypeParser(TypeFactory f)
-