Uses of Class
com.fasterxml.jackson.databind.introspect.AnnotatedMember
-
Packages that use AnnotatedMember 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.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.ser.std com.fasterxml.jackson.databind.util Utility classes for Mapper package. -
-
Uses of AnnotatedMember in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as AnnotatedMember Modifier and Type Field Description protected AnnotatedMemberBeanProperty.Std. _memberPhysical entity (field, method or constructor argument) that is used to access value of property (or in case of constructor property, just placeholder)AnnotatedMemberPropertyMetadata.MergeInfo. getterMethods in com.fasterxml.jackson.databind that return AnnotatedMember Modifier and Type Method Description abstract AnnotatedMemberBeanDescription. findAnyGetter()abstract AnnotatedMemberBeanDescription. findAnySetterAccessor()Method used to locate a mutator (settable field, or 2-argument set method) of introspected class that implementsJsonAnySetter.AnnotatedMemberBeanDescription. findAnySetterField()Deprecated.Since 2.9: useBeanDescription.findAnySetterAccessor()insteadabstract AnnotatedMemberBeanDescription. findJsonValueAccessor()Method for locating accessor (readable field, or "getter" method) that hasJsonValueannotation, if any.AnnotatedMemberBeanProperty.Bogus. getMember()AnnotatedMemberBeanProperty. getMember()Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.AnnotatedMemberBeanProperty.Std. getMember()Methods in com.fasterxml.jackson.databind that return types with arguments of type AnnotatedMember Modifier and Type Method Description abstract Map<String,AnnotatedMember>BeanDescription. findBackReferenceProperties()Deprecated.Since 2.9 useBeanDescription.findBackReferences()insteadabstract Map<Object,AnnotatedMember>BeanDescription. findInjectables()Methods in com.fasterxml.jackson.databind with parameters of type AnnotatedMember Modifier and Type Method Description static PropertyMetadata.MergeInfoPropertyMetadata.MergeInfo. createForDefaults(AnnotatedMember getter)static PropertyMetadata.MergeInfoPropertyMetadata.MergeInfo. createForPropertyOverride(AnnotatedMember getter)static PropertyMetadata.MergeInfoPropertyMetadata.MergeInfo. createForTypeOverride(AnnotatedMember getter)ObjectAnnotationIntrospector. findDeserializationContentConverter(AnnotatedMember a)Method for findingConverterthat annotated property has indicated needs to be used for values of container type (this also means that method should only be called for properties of container types, List/Map/array properties).StringAnnotationIntrospector. findImplicitPropertyName(AnnotatedMember member)Method for finding implicit name for a property that given annotated member (field, method, creator parameter) may represent.com.fasterxml.jackson.annotation.JacksonInject.ValueAnnotationIntrospector. findInjectableValue(AnnotatedMember m)Method called to find out whether given member expectes a value to be injected, and if so, what is the identifier of the value to use during injection.ObjectAnnotationIntrospector. findInjectableValueId(AnnotatedMember m)Deprecated.TypeResolverBuilder<?>AnnotationIntrospector. findPropertyContentTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType containerType)Method for checking if given structured property entity (field or method that has nominal value of Map, Collection or array type) has annotations that indicate that specific type resolver is to be used for handling type information of contained values.TypeResolverBuilder<?>AnnotationIntrospector. findPropertyTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)Method for checking if given property entity (field or method) has annotations that indicate that specific type resolver is to be used for handling instances.AnnotationIntrospector.ReferencePropertyAnnotationIntrospector. findReferenceType(AnnotatedMember member)Method for checking if given member indicates that it is part of a reference (parent/child).ObjectAnnotationIntrospector. findSerializationContentConverter(AnnotatedMember a)Method for findingConverterthat annotated property has indicated needs to be used for values of container type (this also means that method should only be called for properties of container types, List/Map/array properties).NameTransformerAnnotationIntrospector. findUnwrappingNameTransformer(AnnotatedMember member)Method called to check whether given property is marked to be "unwrapped" when being serialized (and appropriately handled in reverse direction, i.e.booleanAnnotationIntrospector. hasIgnoreMarker(AnnotatedMember m)Method called to check whether given property is marked to be ignored.BooleanAnnotationIntrospector. hasRequiredMarker(AnnotatedMember m)Method that can be called to check whether this member has an annotation that suggests whether value for matching property is required or not.BooleanAnnotationIntrospector. isTypeId(AnnotatedMember member)Method for checking whether given accessor claims to represent type id: if so, its value may be used as an override, instead of generated type id.Constructors in com.fasterxml.jackson.databind with parameters of type AnnotatedMember Constructor Description MergeInfo(AnnotatedMember getter, boolean fromDefaults)Std(PropertyName name, JavaType type, PropertyName wrapperName, AnnotatedMember member, PropertyMetadata metadata)Std(PropertyName name, JavaType type, PropertyName wrapperName, Annotations contextAnnotations, AnnotatedMember member, PropertyMetadata metadata)Deprecated.Since 2.9 -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.deser
Fields in com.fasterxml.jackson.databind.deser declared as AnnotatedMember Modifier and Type Field Description protected AnnotatedMemberSettableAnyProperty. _setterAnnotated variant is needed for JDK serialization onlyMethods in com.fasterxml.jackson.databind.deser that return AnnotatedMember Modifier and Type Method Description AnnotatedMemberCreatorProperty. getMember()AnnotatedMemberSettableBeanProperty.Delegating. getMember()abstract AnnotatedMemberSettableBeanProperty. getMember()Methods in com.fasterxml.jackson.databind.deser with parameters of type AnnotatedMember Modifier and Type Method Description voidBeanDeserializerBuilder. addInjectable(PropertyName propName, JavaType propType, Annotations contextAnnotations, AnnotatedMember member, Object valueId)protected SettableAnyPropertyBeanDeserializerFactory. constructAnySetter(DeserializationContext ctxt, BeanDescription beanDesc, AnnotatedMember mutator)Method called to construct fallbackSettableAnyPropertyfor handling unknown bean properties, given a method that has been designated as such setter.protected EnumResolverBasicDeserializerFactory. constructEnumResolver(Class<?> enumClass, DeserializationConfig config, AnnotatedMember jsonValueAccessor)TypeDeserializerBasicDeserializerFactory. findPropertyContentTypeDeserializer(DeserializationConfig config, JavaType containerType, AnnotatedMember propertyEntity)Method called to find and create a type information deserializer for values of given container (list, array, map) property, if one is needed.TypeDeserializerBasicDeserializerFactory. findPropertyTypeDeserializer(DeserializationConfig config, JavaType baseType, AnnotatedMember annotated)Method called to create a type information deserializer for values of given non-container property, if one is needed.protected JavaTypeBasicDeserializerFactory. resolveMemberAndTypeAnnotations(DeserializationContext ctxt, AnnotatedMember member, JavaType type)Helper method used to resolve additional type-related annotation information like type overrides, or handler (serializer, deserializer) overrides, so that from declared field, property or constructor parameter type is used as the base and modified based on annotations, if any.protected JavaTypeBasicDeserializerFactory. resolveType(DeserializationContext ctxt, BeanDescription beanDesc, JavaType type, AnnotatedMember member)Constructors in com.fasterxml.jackson.databind.deser with parameters of type AnnotatedMember Constructor Description SettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, JsonDeserializer<Object> valueDeser, TypeDeserializer typeDeser)Deprecated.SettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, KeyDeserializer keyDeser, JsonDeserializer<Object> valueDeser, TypeDeserializer typeDeser) -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as AnnotatedMember Modifier and Type Field Description protected AnnotatedMemberMergingSettableBeanProperty. _accessorMember (field, method) used for accessing existing value.Methods in com.fasterxml.jackson.databind.deser.impl that return AnnotatedMember Modifier and Type Method Description AnnotatedMemberFieldProperty. getMember()AnnotatedMemberMethodProperty. getMember()AnnotatedMemberObjectIdReferenceProperty. getMember()AnnotatedMemberObjectIdValueProperty. getMember()AnnotatedMemberSetterlessProperty. getMember()Methods in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotatedMember Modifier and Type Method Description static MergingSettableBeanPropertyMergingSettableBeanProperty. construct(SettableBeanProperty delegate, AnnotatedMember accessor)Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotatedMember Constructor Description MergingSettableBeanProperty(SettableBeanProperty delegate, AnnotatedMember accessor)ValueInjector(PropertyName propName, JavaType type, AnnotatedMember mutator, Object valueId)ValueInjector(PropertyName propName, JavaType type, Annotations contextAnnotations, AnnotatedMember mutator, Object valueId)Deprecated.in 2.9 (remove from 3.0) -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.introspect
Classes in com.fasterxml.jackson.databind.introspect with type parameters of type AnnotatedMember Modifier and Type Class Description protected static classPOJOPropertyBuilder.MemberIterator<T extends AnnotatedMember>Subclasses of AnnotatedMember in com.fasterxml.jackson.databind.introspect Modifier and Type Class Description classAnnotatedConstructorclassAnnotatedFieldObject that represents non-static (and usually non-transient/volatile) fields of a class.classAnnotatedMethodclassAnnotatedParameterObject that represents method parameters, mostly so that associated annotations can be processed conveniently.classAnnotatedWithParamsIntermediate base class that encapsulates features that constructors and methods share.classVirtualAnnotatedMemberPlaceholder used by virtual properties as placeholder for underlyingAnnotatedMember.Fields in com.fasterxml.jackson.databind.introspect with type parameters of type AnnotatedMember Modifier and Type Field Description protected LinkedList<AnnotatedMember>POJOPropertiesCollector. _anyGettersprotected LinkedList<AnnotatedMember>POJOPropertiesCollector. _anySetterFieldprotected LinkedHashMap<Object,AnnotatedMember>POJOPropertiesCollector. _injectablesLazily collected list of members that were annotated to indicate that they represent mutators for deserializer value injection.protected LinkedList<AnnotatedMember>POJOPropertiesCollector. _jsonValueAccessorsMethod(s) marked with 'JsonValue' annotationMethods in com.fasterxml.jackson.databind.introspect that return AnnotatedMember Modifier and Type Method Description AnnotatedMemberBasicBeanDescription. findAnyGetter()Method used to locate the method of introspected class that implementsJsonAnyGetter.AnnotatedMemberBasicBeanDescription. findAnySetterAccessor()AnnotatedMemberBasicBeanDescription. findJsonValueAccessor()AnnotatedMemberBeanPropertyDefinition. getAccessor()Method used to find accessor (getter, field to access) to use for accessing value of the property.AnnotatedMemberPOJOPropertiesCollector. getAnyGetter()AnnotatedMemberPOJOPropertiesCollector. getAnySetterField()AnnotatedMemberPOJOPropertiesCollector. getJsonValueAccessor()AnnotatedMemberBeanPropertyDefinition. getMutator()Method used to find mutator (constructor parameter, setter, field) to use for changing value of the property.AnnotatedMemberBeanPropertyDefinition. getNonConstructorMutator()abstract AnnotatedMemberBeanPropertyDefinition. getPrimaryMember()Method used to find the property member (getter, setter, field) that has the highest precedence in current context (getter method when serializing, if available, and so forth), if any.AnnotatedMemberPOJOPropertyBuilder. getPrimaryMember()Methods in com.fasterxml.jackson.databind.introspect that return types with arguments of type AnnotatedMember Modifier and Type Method Description Map<String,AnnotatedMember>BasicBeanDescription. findBackReferenceProperties()Deprecated.Map<Object,AnnotatedMember>BasicBeanDescription. findInjectables()Map<Object,AnnotatedMember>POJOPropertiesCollector. getInjectables()Constructors in com.fasterxml.jackson.databind.introspect with parameters of type AnnotatedMember Constructor Description AnnotatedMember(AnnotatedMember base)Copy-constructor. -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.jsontype
Methods in com.fasterxml.jackson.databind.jsontype with parameters of type AnnotatedMember Modifier and Type Method Description Collection<NamedType>SubtypeResolver. collectAndResolveSubtypes(AnnotatedMember property, MapperConfig<?> config, AnnotationIntrospector ai, JavaType baseType)Deprecated.Collection<NamedType>SubtypeResolver. collectAndResolveSubtypesByClass(MapperConfig<?> config, AnnotatedMember property, JavaType baseType)Method for finding out all reachable subtypes for a property specified by given element (method or field), such that access is by type, typically needed for serialization (converting from type to type name).Collection<NamedType>SubtypeResolver. collectAndResolveSubtypesByTypeId(MapperConfig<?> config, AnnotatedMember property, JavaType baseType)Method for finding out all reachable subtypes for a property specified by given element (method or field), such that access is by type id, typically needed for deserialization (converting from type id to type). -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.jsontype.impl
Methods in com.fasterxml.jackson.databind.jsontype.impl with parameters of type AnnotatedMember Modifier and Type Method Description Collection<NamedType>StdSubtypeResolver. collectAndResolveSubtypesByClass(MapperConfig<?> config, AnnotatedMember property, JavaType baseType)Collection<NamedType>StdSubtypeResolver. collectAndResolveSubtypesByTypeId(MapperConfig<?> config, AnnotatedMember property, JavaType baseType) -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.ser
Fields in com.fasterxml.jackson.databind.ser declared as AnnotatedMember Modifier and Type Field Description protected AnnotatedMemberAnyGetterWriter. _accessorMethod (or field) that represents the "any getter"protected AnnotatedMemberBeanPropertyWriter. _memberMember (field, method) that represents property and allows access to associated annotations.protected AnnotatedMemberBeanSerializerBuilder. _typeIdProperty that is used for type id (and not serialized as regular property)Methods in com.fasterxml.jackson.databind.ser that return AnnotatedMember Modifier and Type Method Description AnnotatedMemberBeanPropertyWriter. getMember()AnnotatedMemberBeanSerializerBuilder. getTypeId()Methods in com.fasterxml.jackson.databind.ser with parameters of type AnnotatedMember Modifier and Type Method Description protected BeanPropertyWriterBeanSerializerFactory. _constructWriter(SerializerProvider prov, BeanPropertyDefinition propDef, PropertyBuilder pb, boolean staticTyping, AnnotatedMember accessor)Secondary helper method for constructingBeanPropertyWriterfor given member (field or method).protected BeanPropertyWriterPropertyBuilder. buildWriter(SerializerProvider prov, BeanPropertyDefinition propDef, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, TypeSerializer contentTypeSer, AnnotatedMember am, boolean defaultUseStaticTyping)TypeSerializerBeanSerializerFactory. findPropertyContentTypeSerializer(JavaType containerType, SerializationConfig config, AnnotatedMember accessor)Method called to create a type information serializer for values of given container property if one is needed.TypeSerializerBeanSerializerFactory. findPropertyTypeSerializer(JavaType baseType, SerializationConfig config, AnnotatedMember accessor)Method called to create a type information serializer for values of given non-container property if one is needed.protected ObjectPropertyBuilder. getPropertyDefaultValue(String name, AnnotatedMember member, JavaType type)Deprecated.Since 2.9 since this will not allow determining difference between "no default instance" case and default being `null`.voidBeanSerializerBuilder. setTypeId(AnnotatedMember idProp)Constructors in com.fasterxml.jackson.databind.ser with parameters of type AnnotatedMember Constructor Description AnyGetterWriter(BeanProperty property, AnnotatedMember accessor, JsonSerializer<?> serializer)BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue)Deprecated.BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue, Class<?>[] includeInViews) -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.ser.std
Fields in com.fasterxml.jackson.databind.ser.std declared as AnnotatedMember Modifier and Type Field Description protected AnnotatedMemberJsonValueSerializer. _accessorprotected AnnotatedMemberBeanSerializerBase. _typeIdIf using custom type ids (usually via getter, or field), this is the reference to that member.Methods in com.fasterxml.jackson.databind.ser.std that return AnnotatedMember Modifier and Type Method Description AnnotatedMemberMapProperty. getMember()Constructors in com.fasterxml.jackson.databind.ser.std with parameters of type AnnotatedMember Constructor Description JsonValueSerializer(AnnotatedMember accessor, JsonSerializer<?> ser) -
Uses of AnnotatedMember in com.fasterxml.jackson.databind.util
Fields in com.fasterxml.jackson.databind.util declared as AnnotatedMember Modifier and Type Field Description protected AnnotatedMemberSimpleBeanPropertyDefinition. _memberMember that defines logical property.Methods in com.fasterxml.jackson.databind.util that return AnnotatedMember Modifier and Type Method Description AnnotatedMemberSimpleBeanPropertyDefinition. getPrimaryMember()Methods in com.fasterxml.jackson.databind.util with parameters of type AnnotatedMember Modifier and Type Method Description static SimpleBeanPropertyDefinitionSimpleBeanPropertyDefinition. construct(MapperConfig<?> config, AnnotatedMember member)static SimpleBeanPropertyDefinitionSimpleBeanPropertyDefinition. construct(MapperConfig<?> config, AnnotatedMember member, PropertyName name)static SimpleBeanPropertyDefinitionSimpleBeanPropertyDefinition. construct(MapperConfig<?> config, AnnotatedMember member, PropertyName name, PropertyMetadata metadata, com.fasterxml.jackson.annotation.JsonInclude.Include inclusion)Method called to create instance for virtual properties.static SimpleBeanPropertyDefinitionSimpleBeanPropertyDefinition. construct(MapperConfig<?> config, AnnotatedMember member, PropertyName name, PropertyMetadata metadata, com.fasterxml.jackson.annotation.JsonInclude.Value inclusion)static EnumResolverEnumResolver. constructUnsafeUsingMethod(Class<?> rawEnumCls, AnnotatedMember accessor, AnnotationIntrospector ai)Method used when actual String serialization is indicated using @JsonValue on a method.static EnumResolverEnumResolver. constructUsingMethod(Class<Enum<?>> enumCls, AnnotatedMember accessor, AnnotationIntrospector ai)Constructors in com.fasterxml.jackson.databind.util with parameters of type AnnotatedMember Constructor Description SimpleBeanPropertyDefinition(AnnotationIntrospector intr, AnnotatedMember member, PropertyName fullName, PropertyMetadata metadata, com.fasterxml.jackson.annotation.JsonInclude.Value inclusion)
-