Uses of Class
com.fasterxml.jackson.databind.introspect.ClassIntrospector
-
Packages that use ClassIntrospector 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.cfg Package that contains most of configuration-related classes; exception being couple of most-commonly used configuration things (like Feature enumerations) that are at the main level (com.fasterxml.jackson.databind).com.fasterxml.jackson.databind.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. -
-
Uses of ClassIntrospector in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return ClassIntrospector Modifier and Type Method Description protected ClassIntrospectorObjectMapper. defaultClassIntrospector()Overridable helper method used to construct defaultClassIntrospectorto use.Methods in com.fasterxml.jackson.databind with parameters of type ClassIntrospector Modifier and Type Method Description voidModule.SetupContext. setClassIntrospector(ClassIntrospector ci)Method for replacing the default class introspector with a derived class that overrides specific behavior. -
Uses of ClassIntrospector in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as ClassIntrospector Modifier and Type Field Description protected ClassIntrospectorBaseSettings. _classIntrospectorIntrospector used to figure out Bean properties needed for bean serialization and deserialization.Methods in com.fasterxml.jackson.databind.cfg that return ClassIntrospector Modifier and Type Method Description ClassIntrospectorBaseSettings. getClassIntrospector()ClassIntrospectorMapperConfig. getClassIntrospector()Methods in com.fasterxml.jackson.databind.cfg with parameters of type ClassIntrospector Modifier and Type Method Description TMapperConfigBase. with(ClassIntrospector ci)Method for constructing and returning a new instance with differentClassIntrospectorto use.BaseSettingsBaseSettings. withClassIntrospector(ClassIntrospector ci)Constructors in com.fasterxml.jackson.databind.cfg with parameters of type ClassIntrospector Constructor Description BaseSettings(ClassIntrospector ci, AnnotationIntrospector ai, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, DateFormat dateFormat, HandlerInstantiator hi, Locale locale, TimeZone tz, com.fasterxml.jackson.core.Base64Variant defaultBase64)Deprecated.BaseSettings(ClassIntrospector ci, AnnotationIntrospector ai, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, DateFormat dateFormat, HandlerInstantiator hi, Locale locale, TimeZone tz, com.fasterxml.jackson.core.Base64Variant defaultBase64, PolymorphicTypeValidator ptv) -
Uses of ClassIntrospector in com.fasterxml.jackson.databind.introspect
Subclasses of ClassIntrospector in com.fasterxml.jackson.databind.introspect Modifier and Type Class Description classBasicClassIntrospectorMethods in com.fasterxml.jackson.databind.introspect that return ClassIntrospector Modifier and Type Method Description ClassIntrospectorBasicClassIntrospector. copy()abstract ClassIntrospectorClassIntrospector. copy()Method that may be needed when `copy()`ing `ObjectMapper` instances.
-