Uses of Class
com.fasterxml.jackson.databind.type.TypeModifier
-
Packages that use TypeModifier Package Description com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode
), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.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). -
-
Uses of TypeModifier in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type TypeModifier Modifier and Type Method Description void
Module.SetupContext. addTypeModifier(TypeModifier modifier)
Method that module can use to register additionalTypeModifier
instance, which can augmentJavaType
instances constructed byTypeFactory
. -
Uses of TypeModifier in com.fasterxml.jackson.databind.type
Fields in com.fasterxml.jackson.databind.type declared as TypeModifier Modifier and Type Field Description protected TypeModifier[]
TypeFactory. _modifiers
RegisteredTypeModifier
s: objects that can change details ofJavaType
instances factory constructs.Methods in com.fasterxml.jackson.databind.type with parameters of type TypeModifier Modifier and Type Method Description TypeFactory
TypeFactory. withModifier(TypeModifier mod)
"Mutant factory" method which will construct a new instance with specifiedTypeModifier
added as the first modifier to call (in case there are multiple registered).Constructors in com.fasterxml.jackson.databind.type with parameters of type TypeModifier Constructor Description TypeFactory(LookupCache<java.lang.Object,JavaType> typeCache, TypeParser p, TypeModifier[] mods, java.lang.ClassLoader classLoader)
TypeFactory(LRUMap<java.lang.Object,JavaType> typeCache, TypeParser p, TypeModifier[] mods, java.lang.ClassLoader classLoader)
Deprecated.Since 2.12
-