Uses of Class
org.codehaus.jackson.map.introspect.AnnotatedMember
-
Packages that use AnnotatedMember Package Description org.codehaus.jackson.map 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 viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding.org.codehaus.jackson.map.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.org.codehaus.jackson.map.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations.org.codehaus.jackson.map.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization.org.codehaus.jackson.map.jsontype.impl Package that contains standard implementations forTypeResolverBuilderandTypeIdResolver.org.codehaus.jackson.map.ser Contains implementation classes of serialization part of data binding.org.codehaus.jackson.xc 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 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)Methods in org.codehaus.jackson.map that return AnnotatedMember Modifier and Type Method Description abstract AnnotatedMemberBeanPropertyDefinition. getAccessor()Method used to find accessor (getter, field to access) to use for accessing value of the property.AnnotatedMemberBeanProperty. getMember()Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.AnnotatedMemberBeanProperty.Std. getMember()abstract AnnotatedMemberBeanPropertyDefinition. 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 AnnotatedMember Modifier and Type Method Description abstract java.util.Map<java.lang.Object,AnnotatedMember>BeanDescription. findInjectables()Methods in org.codehaus.jackson.map with parameters of type AnnotatedMember Modifier and Type Method Description java.lang.ObjectAnnotationIntrospector. 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.java.lang.ObjectAnnotationIntrospector.Pair. findInjectableValueId(AnnotatedMember m)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.Pair. findPropertyContentTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)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.TypeResolverBuilder<?>AnnotationIntrospector.Pair. findPropertyTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)AnnotationIntrospector.ReferencePropertyAnnotationIntrospector. findReferenceType(AnnotatedMember member)Note: defined as non-abstract to reduce fragility between versions.AnnotationIntrospector.ReferencePropertyAnnotationIntrospector.Pair. findReferenceType(AnnotatedMember member)booleanAnnotationIntrospector. 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.booleanAnnotationIntrospector.Pair. hasIgnoreMarker(AnnotatedMember m)java.lang.BooleanAnnotationIntrospector.Pair. shouldUnwrapProperty(AnnotatedMember member)java.lang.BooleanAnnotationIntrospector. 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 AnnotatedMember Constructor Description Std(java.lang.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 AnnotatedMember Modifier and Type Method Description AnnotatedMemberSettableBeanProperty.FieldProperty. getMember()abstract AnnotatedMemberSettableBeanProperty. getMember()AnnotatedMemberSettableBeanProperty.InnerClassProperty. getMember()AnnotatedMemberSettableBeanProperty.ManagedReferenceProperty. getMember()AnnotatedMemberSettableBeanProperty.MethodProperty. getMember()AnnotatedMemberSettableBeanProperty.SetterlessProperty. getMember()Methods in org.codehaus.jackson.map.deser with parameters of type AnnotatedMember Modifier and Type Method Description voidBeanDeserializerBuilder. addInjectable(java.lang.String propertyName, JavaType propertyType, Annotations contextAnnotations, AnnotatedMember member, java.lang.Object valueId)TypeDeserializerBasicDeserializerFactory. 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.TypeDeserializerBasicDeserializerFactory. 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 JavaTypeBasicDeserializerFactory. 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 AnnotatedMember Modifier and Type Method Description AnnotatedMemberCreatorProperty. getMember()Constructors in org.codehaus.jackson.map.deser.impl with parameters of type AnnotatedMember Constructor Description ValueInjector(java.lang.String propertyName, JavaType type, Annotations contextAnnotations, AnnotatedMember mutator, java.lang.Object valueId) -
Uses of AnnotatedMember in org.codehaus.jackson.map.introspect
Subclasses of AnnotatedMember in org.codehaus.jackson.map.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.Fields in org.codehaus.jackson.map.introspect with type parameters of type AnnotatedMember Modifier and Type Field Description protected java.util.Map<java.lang.Object,AnnotatedMember>BasicBeanDescription. _injectablesprotected java.util.LinkedHashMap<java.lang.Object,AnnotatedMember>POJOPropertiesCollector. _injectablesLazily 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 AnnotatedMember Modifier and Type Method Description AnnotatedMemberPOJOPropertyBuilder. getAccessor()AnnotatedMemberPOJOPropertyBuilder. getMutator()Methods in org.codehaus.jackson.map.introspect that return types with arguments of type AnnotatedMember Modifier and Type Method Description java.util.Map<java.lang.String,AnnotatedMember>BasicBeanDescription. findBackReferenceProperties()Method for locating all back-reference properties (setters, fields) bean hasjava.util.Map<java.lang.Object,AnnotatedMember>BasicBeanDescription. findInjectables()java.util.Map<java.lang.Object,AnnotatedMember>POJOPropertiesCollector. getInjectables()Methods in org.codehaus.jackson.map.introspect with parameters of type AnnotatedMember Modifier and Type Method Description protected voidPOJOPropertiesCollector. _doAddInjectable(java.lang.Object id, AnnotatedMember m)java.lang.ObjectJacksonAnnotationIntrospector. findInjectableValueId(AnnotatedMember m)TypeResolverBuilder<?>JacksonAnnotationIntrospector. findPropertyContentTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType containerType)Since 1.7, it is possible to useJsonTypeInfofrom a property too.TypeResolverBuilder<?>JacksonAnnotationIntrospector. findPropertyTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)Since 1.7, it is possible to useJsonTypeInfofrom a property too.AnnotationIntrospector.ReferencePropertyJacksonAnnotationIntrospector. findReferenceType(AnnotatedMember member)booleanJacksonAnnotationIntrospector. hasIgnoreMarker(AnnotatedMember m)booleanNopAnnotationIntrospector. hasIgnoreMarker(AnnotatedMember member)booleanVisibilityChecker. isCreatorVisible(AnnotatedMember m)booleanVisibilityChecker.Std. isCreatorVisible(AnnotatedMember m)java.lang.BooleanJacksonAnnotationIntrospector. shouldUnwrapProperty(AnnotatedMember member) -
Uses of AnnotatedMember in org.codehaus.jackson.map.jsontype
Methods in org.codehaus.jackson.map.jsontype with parameters of type AnnotatedMember Modifier and Type Method Description abstract java.util.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 AnnotatedMember Modifier and Type Method Description java.util.Collection<NamedType>StdSubtypeResolver. 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 AnnotatedMember Modifier and Type Field Description protected AnnotatedMemberBeanPropertyWriter. _memberMember (field, method) that represents property and allows access to associated annotations.Methods in org.codehaus.jackson.map.ser that return AnnotatedMember Modifier and Type Method Description AnnotatedMemberBeanPropertyWriter. getMember()Methods in org.codehaus.jackson.map.ser with parameters of type AnnotatedMember Modifier and Type Method Description protected BeanPropertyWriterBeanSerializerFactory. _constructWriter(SerializationConfig config, TypeBindings typeContext, PropertyBuilder pb, boolean staticTyping, java.lang.String name, AnnotatedMember accessor)Secondary helper method for constructingBeanPropertyWriterfor given member (field or method).protected BeanPropertyWriterPropertyBuilder. buildWriter(java.lang.String name, JavaType declaredType, JsonSerializer<java.lang.Object> ser, TypeSerializer typeSer, TypeSerializer contentTypeSer, AnnotatedMember am, boolean defaultUseStaticTyping)TypeSerializerBeanSerializerFactory. 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.TypeSerializerBeanSerializerFactory. 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 AnnotatedMember Constructor Description BeanPropertyWriter(AnnotatedMember member, Annotations contextAnnotations, java.lang.String name, JavaType declaredType, JsonSerializer<java.lang.Object> ser, TypeSerializer typeSer, JavaType serType, java.lang.reflect.Method m, java.lang.reflect.Field f, boolean suppressNulls, java.lang.Object suppressableValue)BeanPropertyWriter(AnnotatedMember member, Annotations contextAnnotations, SerializedString name, JavaType declaredType, JsonSerializer<java.lang.Object> ser, TypeSerializer typeSer, JavaType serType, java.lang.reflect.Method m, java.lang.reflect.Field f, boolean suppressNulls, java.lang.Object suppressableValue) -
Uses of AnnotatedMember in org.codehaus.jackson.xc
Methods in org.codehaus.jackson.xc with parameters of type AnnotatedMember Modifier and Type Method Description protected TypeResolverBuilder<?>JaxbAnnotationIntrospector. _typeResolverFromXmlElements(AnnotatedMember am)TypeResolverBuilder<?>JaxbAnnotationIntrospector. findPropertyContentTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType containerType)TypeResolverBuilder<?>JaxbAnnotationIntrospector. findPropertyTypeResolver(MapperConfig<?> config, AnnotatedMember am, JavaType baseType)booleanJaxbAnnotationIntrospector. hasIgnoreMarker(AnnotatedMember m)
-