Uses of Class
org.codehaus.jackson.map.introspect.AnnotatedMember
Packages that use AnnotatedMember
Package
Description
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 via
ObjectMapper
class, as well
as convenience methods included in
JsonParser
Contains implementation classes of deserialization part of
data binding.
Contains those implementation classes of deserialization part of
data binding that are not considered part of public or semi-public
interfaces.
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
Package that contains interfaces that define how to implement
functionality for dynamically resolving type during deserialization.
Package that contains standard implementations for
TypeResolverBuilder
and
TypeIdResolver
.Contains implementation classes of serialization part of
data binding.
Package that contains XML Compatibility functionality for Jackson, such
as handlers for JAXB annotations
-
Uses of AnnotatedMember in org.codehaus.jackson.map
Fields in org.codehaus.jackson.map declared as AnnotatedMemberModifier and TypeFieldDescriptionprotected final AnnotatedMember
BeanProperty.Std._member
Physical entity (field, method or constructor argument) that is used to access value of property (or in case of constructor property, just placeholder)Methods in org.codehaus.jackson.map that return AnnotatedMemberModifier and TypeMethodDescriptionabstract AnnotatedMember
BeanPropertyDefinition.getAccessor()
Method used to find accessor (getter, field to access) to use for accessing value of the property.BeanProperty.getMember()
Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.BeanProperty.Std.getMember()
abstract AnnotatedMember
BeanPropertyDefinition.getMutator()
Method used to find mutator (constructor parameter, setter, field) to use for changing value of the property.Methods in org.codehaus.jackson.map that return types with arguments of type AnnotatedMemberModifier and TypeMethodDescriptionabstract Map
<Object, AnnotatedMember> BeanDescription.findInjectables()
Methods in org.codehaus.jackson.map with parameters of type AnnotatedMemberModifier and TypeMethodDescriptionAnnotationIntrospector.findInjectableValueId
(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.AnnotationIntrospector.Pair.findInjectableValueId
(AnnotatedMember m) 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.AnnotationIntrospector.Pair.findPropertyContentTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) 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.Pair.findPropertyTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) AnnotationIntrospector.findReferenceType
(AnnotatedMember member) Note: defined as non-abstract to reduce fragility between versions.AnnotationIntrospector.Pair.findReferenceType
(AnnotatedMember member) boolean
AnnotationIntrospector.hasIgnoreMarker
(AnnotatedMember m) Method called to check whether given property is marked to be ignored; but NOT to determine if it should necessarily be ignored, since that may depend on other factors.boolean
AnnotationIntrospector.Pair.hasIgnoreMarker
(AnnotatedMember m) AnnotationIntrospector.Pair.shouldUnwrapProperty
(AnnotatedMember member) AnnotationIntrospector.shouldUnwrapProperty
(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.Constructors in org.codehaus.jackson.map with parameters of type AnnotatedMemberModifierConstructorDescriptionStd
(String name, JavaType type, Annotations contextAnnotations, AnnotatedMember member) -
Uses of AnnotatedMember in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser that return AnnotatedMemberModifier and TypeMethodDescriptionSettableBeanProperty.FieldProperty.getMember()
abstract AnnotatedMember
SettableBeanProperty.getMember()
SettableBeanProperty.InnerClassProperty.getMember()
SettableBeanProperty.ManagedReferenceProperty.getMember()
SettableBeanProperty.MethodProperty.getMember()
SettableBeanProperty.SetterlessProperty.getMember()
Methods in org.codehaus.jackson.map.deser with parameters of type AnnotatedMemberModifier and TypeMethodDescriptionvoid
BeanDeserializerBuilder.addInjectable
(String propertyName, JavaType propertyType, Annotations contextAnnotations, AnnotatedMember member, Object valueId) BasicDeserializerFactory.findPropertyContentTypeDeserializer
(DeserializationConfig config, JavaType containerType, AnnotatedMember propertyEntity, BeanProperty property) Method called to find and create a type information deserializer for values of given container (list, array, map) property, if one is needed.BasicDeserializerFactory.findPropertyTypeDeserializer
(DeserializationConfig config, JavaType baseType, AnnotatedMember annotated, BeanProperty property) Method called to create a type information deserializer for values of given non-container property, if one is needed.protected JavaType
BasicDeserializerFactory.resolveType
(DeserializationConfig config, BasicBeanDescription beanDesc, JavaType type, AnnotatedMember member, BeanProperty property) Helper method used to resolve method return types and field types. -
Uses of AnnotatedMember in org.codehaus.jackson.map.deser.impl
Methods in org.codehaus.jackson.map.deser.impl that return AnnotatedMemberConstructors in org.codehaus.jackson.map.deser.impl with parameters of type AnnotatedMemberModifierConstructorDescriptionValueInjector
(String propertyName, JavaType type, Annotations contextAnnotations, AnnotatedMember mutator, Object valueId) -
Uses of AnnotatedMember in org.codehaus.jackson.map.introspect
Subclasses of AnnotatedMember in org.codehaus.jackson.map.introspectModifier and TypeClassDescriptionfinal class
final class
Object that represents non-static (and usually non-transient/volatile) fields of a class.final class
final class
Object that represents method parameters, mostly so that associated annotations can be processed conveniently.class
Intermediate base class that encapsulates features that constructors and methods share.Fields in org.codehaus.jackson.map.introspect with type parameters of type AnnotatedMemberModifier and TypeFieldDescriptionprotected Map
<Object, AnnotatedMember> BasicBeanDescription._injectables
protected LinkedHashMap
<Object, AnnotatedMember> POJOPropertiesCollector._injectables
Lazily collected list of members that were annotated to indicate that they represent mutators for deserializer value injection.Methods in org.codehaus.jackson.map.introspect that return AnnotatedMemberModifier and TypeMethodDescriptionPOJOPropertyBuilder.getAccessor()
POJOPropertyBuilder.getMutator()
Methods in org.codehaus.jackson.map.introspect that return types with arguments of type AnnotatedMemberModifier and TypeMethodDescriptionBasicBeanDescription.findBackReferenceProperties()
Method for locating all back-reference properties (setters, fields) bean hasBasicBeanDescription.findInjectables()
POJOPropertiesCollector.getInjectables()
Methods in org.codehaus.jackson.map.introspect with parameters of type AnnotatedMemberModifier and TypeMethodDescriptionprotected void
POJOPropertiesCollector._doAddInjectable
(Object id, AnnotatedMember m) JacksonAnnotationIntrospector.findInjectableValueId
(AnnotatedMember m) JacksonAnnotationIntrospector.findPropertyContentTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType containerType) Since 1.7, it is possible to useJsonTypeInfo
from a property too.JacksonAnnotationIntrospector.findPropertyTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) Since 1.7, it is possible to useJsonTypeInfo
from a property too.JacksonAnnotationIntrospector.findReferenceType
(AnnotatedMember member) boolean
JacksonAnnotationIntrospector.hasIgnoreMarker
(AnnotatedMember m) boolean
NopAnnotationIntrospector.hasIgnoreMarker
(AnnotatedMember member) boolean
VisibilityChecker.isCreatorVisible
(AnnotatedMember m) boolean
VisibilityChecker.Std.isCreatorVisible
(AnnotatedMember m) JacksonAnnotationIntrospector.shouldUnwrapProperty
(AnnotatedMember member) -
Uses of AnnotatedMember in org.codehaus.jackson.map.jsontype
Methods in org.codehaus.jackson.map.jsontype with parameters of type AnnotatedMemberModifier and TypeMethodDescriptionabstract Collection
<NamedType> SubtypeResolver.collectAndResolveSubtypes
(AnnotatedMember property, MapperConfig<?> config, AnnotationIntrospector ai) Method for finding out all reachable subtypes for a property specified by given element (method or field) -
Uses of AnnotatedMember in org.codehaus.jackson.map.jsontype.impl
Methods in org.codehaus.jackson.map.jsontype.impl with parameters of type AnnotatedMemberModifier and TypeMethodDescriptionStdSubtypeResolver.collectAndResolveSubtypes
(AnnotatedMember property, MapperConfig<?> config, AnnotationIntrospector ai) -
Uses of AnnotatedMember in org.codehaus.jackson.map.ser
Fields in org.codehaus.jackson.map.ser declared as AnnotatedMemberModifier and TypeFieldDescriptionprotected final AnnotatedMember
BeanPropertyWriter._member
Member (field, method) that represents property and allows access to associated annotations.Methods in org.codehaus.jackson.map.ser that return AnnotatedMemberMethods in org.codehaus.jackson.map.ser with parameters of type AnnotatedMemberModifier and TypeMethodDescriptionprotected BeanPropertyWriter
BeanSerializerFactory._constructWriter
(SerializationConfig config, TypeBindings typeContext, PropertyBuilder pb, boolean staticTyping, String name, AnnotatedMember accessor) Secondary helper method for constructingBeanPropertyWriter
for given member (field or method).protected BeanPropertyWriter
PropertyBuilder.buildWriter
(String name, JavaType declaredType, JsonSerializer<Object> ser, TypeSerializer typeSer, TypeSerializer contentTypeSer, AnnotatedMember am, boolean defaultUseStaticTyping) BeanSerializerFactory.findPropertyContentTypeSerializer
(JavaType containerType, SerializationConfig config, AnnotatedMember accessor, BeanProperty property) Method called to create a type information serializer for values of given container property if one is needed.BeanSerializerFactory.findPropertyTypeSerializer
(JavaType baseType, SerializationConfig config, AnnotatedMember accessor, BeanProperty property) Method called to create a type information serializer for values of given non-container property if one is needed.Constructors in org.codehaus.jackson.map.ser with parameters of type AnnotatedMemberModifierConstructorDescriptionBeanPropertyWriter
(AnnotatedMember member, Annotations contextAnnotations, String name, JavaType declaredType, JsonSerializer<Object> ser, TypeSerializer typeSer, JavaType serType, Method m, Field f, boolean suppressNulls, Object suppressableValue) BeanPropertyWriter
(AnnotatedMember member, Annotations contextAnnotations, SerializedString name, JavaType declaredType, JsonSerializer<Object> ser, TypeSerializer typeSer, JavaType serType, Method m, Field f, boolean suppressNulls, Object suppressableValue) -
Uses of AnnotatedMember in org.codehaus.jackson.xc
Methods in org.codehaus.jackson.xc with parameters of type AnnotatedMemberModifier and TypeMethodDescriptionprotected TypeResolverBuilder
<?> JaxbAnnotationIntrospector._typeResolverFromXmlElements
(AnnotatedMember am) JaxbAnnotationIntrospector.findPropertyContentTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType containerType) JaxbAnnotationIntrospector.findPropertyTypeResolver
(MapperConfig<?> config, AnnotatedMember am, JavaType baseType) boolean
JaxbAnnotationIntrospector.hasIgnoreMarker
(AnnotatedMember m)