Uses of Class
com.fasterxml.jackson.databind.AnnotationIntrospector
-
Packages that use AnnotationIntrospector 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.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.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.com.fasterxml.jackson.databind.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization.com.fasterxml.jackson.databind.jsontype.impl Package that contains standard implementations forTypeResolverBuilderandTypeIdResolver.com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.util Utility classes for Mapper package. -
-
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as AnnotationIntrospector Modifier and Type Field Description protected static AnnotationIntrospectorObjectMapper. DEFAULT_ANNOTATION_INTROSPECTORMethods in com.fasterxml.jackson.databind that return AnnotationIntrospector Modifier and Type Method Description abstract AnnotationIntrospectorDatabindContext. getAnnotationIntrospector()Convenience method for accessing serialization view in use (if any); equivalent to:AnnotationIntrospectorDeserializationContext. getAnnotationIntrospector()AnnotationIntrospectorSerializerProvider. getAnnotationIntrospector()static AnnotationIntrospectorAnnotationIntrospector. nopInstance()Factory method for accessing "no operation" implementation of introspector: instance that will never find any annotation-based configuration.static AnnotationIntrospectorAnnotationIntrospector. pair(AnnotationIntrospector a1, AnnotationIntrospector a2)Methods in com.fasterxml.jackson.databind that return types with arguments of type AnnotationIntrospector Modifier and Type Method Description Collection<AnnotationIntrospector>AnnotationIntrospector. allIntrospectors()Method that can be used to collect all "real" introspectors that this introspector contains, if any; or this introspector if it is not a container.Collection<AnnotationIntrospector>AnnotationIntrospector. allIntrospectors(Collection<AnnotationIntrospector> result)Method that can be used to collect all "real" introspectors that this introspector contains, if any; or this introspector if it is not a container.Methods in com.fasterxml.jackson.databind with parameters of type AnnotationIntrospector Modifier and Type Method Description voidModule.SetupContext. appendAnnotationIntrospector(AnnotationIntrospector ai)Method for registering specifiedAnnotationIntrospectoras the lowest priority introspector, chained with existing introspector(s) and called as fallback for cases not otherwise handled.com.fasterxml.jackson.annotation.JsonFormat.ValueBeanProperty.Bogus. findFormatOverrides(AnnotationIntrospector intr)Deprecated.com.fasterxml.jackson.annotation.JsonFormat.ValueBeanProperty. findFormatOverrides(AnnotationIntrospector intr)Deprecated.com.fasterxml.jackson.annotation.JsonFormat.ValueBeanProperty.Std. findFormatOverrides(AnnotationIntrospector intr)Deprecated.voidModule.SetupContext. insertAnnotationIntrospector(AnnotationIntrospector ai)Method for registering specifiedAnnotationIntrospectoras the highest priority introspector (will be chained with existing introspector(s) which will be used as fallbacks for cases this introspector does not handle)static AnnotationIntrospectorAnnotationIntrospector. pair(AnnotationIntrospector a1, AnnotationIntrospector a2)ObjectMapperObjectMapper. setAnnotationIntrospector(AnnotationIntrospector ai)Method for settingAnnotationIntrospectorused by this mapper instance for both serialization and deserialization.ObjectMapperObjectMapper. setAnnotationIntrospectors(AnnotationIntrospector serializerAI, AnnotationIntrospector deserializerAI)Method for changingAnnotationIntrospectorinstances used by this mapper instance for serialization and deserialization, specifying them separately so that different introspection can be used for different aspectsMethod parameters in com.fasterxml.jackson.databind with type arguments of type AnnotationIntrospector Modifier and Type Method Description Collection<AnnotationIntrospector>AnnotationIntrospector. allIntrospectors(Collection<AnnotationIntrospector> result)Method that can be used to collect all "real" introspectors that this introspector contains, if any; or this introspector if it is not a container. -
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as AnnotationIntrospector Modifier and Type Field Description protected AnnotationIntrospectorBaseSettings. _annotationIntrospectorIntrospector used for accessing annotation value based configuration.Methods in com.fasterxml.jackson.databind.cfg that return AnnotationIntrospector Modifier and Type Method Description AnnotationIntrospectorBaseSettings. getAnnotationIntrospector()AnnotationIntrospectorMapperConfig. getAnnotationIntrospector()Method for gettingAnnotationIntrospectorconfigured to introspect annotation values used for configuration.Methods in com.fasterxml.jackson.databind.cfg with parameters of type AnnotationIntrospector Modifier and Type Method Description BMapperBuilder. annotationIntrospector(AnnotationIntrospector intr)Method for replacingAnnotationIntrospectorused by the mapper instance to be built.TMapperConfigBase. with(AnnotationIntrospector ai)Method for constructing and returning a new instance with differentAnnotationIntrospectorto use (replacing old one).BaseSettingsBaseSettings. withAnnotationIntrospector(AnnotationIntrospector ai)BaseSettingsBaseSettings. withAppendedAnnotationIntrospector(AnnotationIntrospector ai)TMapperConfigBase. withAppendedAnnotationIntrospector(AnnotationIntrospector ai)Method for constructing and returning a new instance with additionalAnnotationIntrospectorappended (as the lowest priority one)BaseSettingsBaseSettings. withInsertedAnnotationIntrospector(AnnotationIntrospector ai)TMapperConfigBase. withInsertedAnnotationIntrospector(AnnotationIntrospector ai)Method for constructing and returning a new instance with additionalAnnotationIntrospectorinserted (as the highest priority one)Constructors in com.fasterxml.jackson.databind.cfg with parameters of type AnnotationIntrospector 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 AnnotationIntrospector in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser with parameters of type AnnotationIntrospector Modifier and Type Method Description protected voidBasicDeserializerFactory. _addDeserializerConstructors(DeserializationContext ctxt, BeanDescription beanDesc, VisibilityChecker<?> vchecker, AnnotationIntrospector intr, CreatorCollector creators, Map<AnnotatedWithParams,BeanPropertyDefinition[]> creatorParams)protected voidBasicDeserializerFactory. _addDeserializerFactoryMethods(DeserializationContext ctxt, BeanDescription beanDesc, VisibilityChecker<?> vchecker, AnnotationIntrospector intr, CreatorCollector creators, Map<AnnotatedWithParams,BeanPropertyDefinition[]> creatorParams) -
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as AnnotationIntrospector Modifier and Type Field Description protected AnnotationIntrospectorCreatorCandidate. _intrMethods in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotationIntrospector Modifier and Type Method Description static CreatorCandidateCreatorCandidate. construct(AnnotationIntrospector intr, AnnotatedWithParams creator, BeanPropertyDefinition[] propDefs)Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotationIntrospector Constructor Description CreatorCandidate(AnnotationIntrospector intr, AnnotatedWithParams ct, CreatorCandidate.Param[] params, int count) -
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind.introspect
Subclasses of AnnotationIntrospector in com.fasterxml.jackson.databind.introspect Modifier and Type Class Description classAnnotationIntrospectorPairHelper class that allows using 2 introspectors such that one introspector acts as the primary one to use; and second one as a fallback used if the primary does not provide conclusive or useful result for a method.classJacksonAnnotationIntrospectorAnnotationIntrospectorimplementation that handles standard Jackson annotations.classNopAnnotationIntrospectorDummy, "no-operation" implementation ofAnnotationIntrospector.Fields in com.fasterxml.jackson.databind.introspect declared as AnnotationIntrospector Modifier and Type Field Description protected AnnotationIntrospectorAnnotatedClass. _annotationIntrospectorFilter used to determine which annotations to gather; used to optimize things so that unnecessary annotations are ignored.protected AnnotationIntrospectorBasicBeanDescription. _annotationIntrospectorprotected AnnotationIntrospectorPOJOPropertiesCollector. _annotationIntrospectorprotected AnnotationIntrospectorPOJOPropertyBuilder. _annotationIntrospectorprotected AnnotationIntrospectorCollectorBase. _intrprotected AnnotationIntrospectorCollectorBase. _intrprotected AnnotationIntrospectorAnnotationIntrospectorPair. _primaryprotected AnnotationIntrospectorAnnotationIntrospectorPair. _secondaryMethods in com.fasterxml.jackson.databind.introspect that return AnnotationIntrospector Modifier and Type Method Description static AnnotationIntrospectorAnnotationIntrospectorPair. create(AnnotationIntrospector primary, AnnotationIntrospector secondary)Helper method for constructing a Pair from two given introspectors (if neither is null); or returning non-null introspector if one is null (and return just null if both are null)AnnotationIntrospectorPOJOPropertiesCollector. getAnnotationIntrospector()Methods in com.fasterxml.jackson.databind.introspect that return types with arguments of type AnnotationIntrospector Modifier and Type Method Description Collection<AnnotationIntrospector>AnnotationIntrospectorPair. allIntrospectors()Collection<AnnotationIntrospector>AnnotationIntrospectorPair. allIntrospectors(Collection<AnnotationIntrospector> result)Methods in com.fasterxml.jackson.databind.introspect with parameters of type AnnotationIntrospector Modifier and Type Method Description protected voidPOJOPropertiesCollector. _addGetterMethod(Map<String,POJOPropertyBuilder> props, AnnotatedMethod m, AnnotationIntrospector ai)protected voidPOJOPropertiesCollector. _addSetterMethod(Map<String,POJOPropertyBuilder> props, AnnotatedMethod m, AnnotationIntrospector ai)static List<AnnotatedField>AnnotatedFieldCollector. collectFields(AnnotationIntrospector intr, TypeResolutionContext tc, ClassIntrospector.MixInResolver mixins, TypeFactory types, JavaType type)static AnnotatedMethodMapAnnotatedMethodCollector. collectMethods(AnnotationIntrospector intr, TypeResolutionContext tc, ClassIntrospector.MixInResolver mixins, TypeFactory types, JavaType type, List<JavaType> superTypes, Class<?> primaryMixIn)static AnnotationIntrospectorAnnotationIntrospectorPair. create(AnnotationIntrospector primary, AnnotationIntrospector secondary)Helper method for constructing a Pair from two given introspectors (if neither is null); or returning non-null introspector if one is null (and return just null if both are null)com.fasterxml.jackson.annotation.JsonFormat.ValueConcreteBeanPropertyBase. findFormatOverrides(AnnotationIntrospector intr)Deprecated.Method parameters in com.fasterxml.jackson.databind.introspect with type arguments of type AnnotationIntrospector Modifier and Type Method Description Collection<AnnotationIntrospector>AnnotationIntrospectorPair. allIntrospectors(Collection<AnnotationIntrospector> result)Constructors in com.fasterxml.jackson.databind.introspect with parameters of type AnnotationIntrospector Constructor Description AnnotationIntrospectorPair(AnnotationIntrospector p, AnnotationIntrospector s)POJOPropertyBuilder(MapperConfig<?> config, AnnotationIntrospector ai, boolean forSerialization, PropertyName internalName)POJOPropertyBuilder(MapperConfig<?> config, AnnotationIntrospector ai, boolean forSerialization, PropertyName internalName, PropertyName name) -
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind.jsontype
Methods in com.fasterxml.jackson.databind.jsontype with parameters of type AnnotationIntrospector Modifier and Type Method Description Collection<NamedType>SubtypeResolver. collectAndResolveSubtypes(AnnotatedClass baseType, MapperConfig<?> config, AnnotationIntrospector ai)Deprecated.Collection<NamedType>SubtypeResolver. collectAndResolveSubtypes(AnnotatedMember property, MapperConfig<?> config, AnnotationIntrospector ai, JavaType baseType)Deprecated. -
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind.jsontype.impl
Methods in com.fasterxml.jackson.databind.jsontype.impl with parameters of type AnnotationIntrospector Modifier and Type Method Description protected voidStdSubtypeResolver. _collectAndResolve(AnnotatedClass annotatedType, NamedType namedType, MapperConfig<?> config, AnnotationIntrospector ai, HashMap<NamedType,NamedType> collectedSubtypes)Method called to find subtypes for a specific type (class), using type (class) as the unique key (in case of conflicts). -
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind.ser
Fields in com.fasterxml.jackson.databind.ser declared as AnnotationIntrospector Modifier and Type Field Description protected AnnotationIntrospectorPropertyBuilder. _annotationIntrospector -
Uses of AnnotationIntrospector in com.fasterxml.jackson.databind.util
Fields in com.fasterxml.jackson.databind.util declared as AnnotationIntrospector Modifier and Type Field Description protected AnnotationIntrospectorSimpleBeanPropertyDefinition. _annotationIntrospectorMethods in com.fasterxml.jackson.databind.util with parameters of type AnnotationIntrospector Modifier and Type Method Description static EnumResolverEnumResolver. constructFor(Class<Enum<?>> enumCls, AnnotationIntrospector ai)Factory method for constructing resolver that maps from Enum.name() into Enum valuestatic EnumResolverEnumResolver. constructUnsafe(Class<?> rawEnumCls, AnnotationIntrospector ai)This method is needed because of the dynamic nature of constructing Enum resolvers.static EnumResolverEnumResolver. constructUnsafeUsingMethod(Class<?> rawEnumCls, AnnotatedMember accessor, AnnotationIntrospector ai)Method used when actual String serialization is indicated using @JsonValue on a method.static EnumResolverEnumResolver. constructUnsafeUsingToString(Class<?> rawEnumCls, AnnotationIntrospector ai)Method that needs to be used instead ofEnumResolver.constructUsingToString(java.lang.Class<java.lang.Enum<?>>)if static type of enum is not known.static EnumResolverEnumResolver. constructUsingMethod(Class<Enum<?>> enumCls, AnnotatedMember accessor, AnnotationIntrospector ai)static EnumResolverEnumResolver. constructUsingToString(Class<Enum<?>> enumCls, AnnotationIntrospector ai)Factory method for constructing resolver that maps from Enum.toString() into Enum valueConstructors in com.fasterxml.jackson.databind.util with parameters of type AnnotationIntrospector Constructor Description SimpleBeanPropertyDefinition(AnnotationIntrospector intr, AnnotatedMember member, PropertyName fullName, PropertyMetadata metadata, com.fasterxml.jackson.annotation.JsonInclude.Value inclusion)
-