Uses of Class
org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Packages that use AnnotatedParameter 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.xc Package that contains XML Compatibility functionality for Jackson, such as handlers for JAXB annotations -
-
Uses of AnnotatedParameter in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return AnnotatedParameter Modifier and Type Method Description abstract AnnotatedParameterBeanPropertyDefinition. getConstructorParameter()Methods in org.codehaus.jackson.map with parameters of type AnnotatedParameter Modifier and Type Method Description abstract java.lang.StringAnnotationIntrospector. findPropertyNameForParam(AnnotatedParameter param)Method for checking whether given set of annotations indicates property name for associated parameter.java.lang.StringAnnotationIntrospector.Pair. findPropertyNameForParam(AnnotatedParameter param)java.lang.StringPropertyNamingStrategy. nameForConstructorParameter(MapperConfig<?> config, AnnotatedParameter ctorParam, java.lang.String defaultName)Method called to find external name (name used in JSON) for given logical POJO property, as defined by given constructor parameter; typically called when building a deserializer (but not necessarily only then).java.lang.StringPropertyNamingStrategy.PropertyNamingStrategyBase. nameForConstructorParameter(MapperConfig<?> config, AnnotatedParameter ctorParam, java.lang.String defaultName) -
Uses of AnnotatedParameter in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser with parameters of type AnnotatedParameter Modifier and Type Method Description protected CreatorPropertyBeanDeserializerFactory. constructCreatorProperty(DeserializationConfig config, BasicBeanDescription beanDesc, java.lang.String name, int index, AnnotatedParameter param, java.lang.Object injectableValueId)Method that will construct a property object that represents a logical property passed via Creator (constructor or static factory method) -
Uses of AnnotatedParameter in org.codehaus.jackson.map.deser.impl
Fields in org.codehaus.jackson.map.deser.impl declared as AnnotatedParameter Modifier and Type Field Description protected AnnotatedParameterCreatorProperty. _annotatedPlaceholder that represents constructor parameter, when it is created from actual constructor.Constructors in org.codehaus.jackson.map.deser.impl with parameters of type AnnotatedParameter Constructor Description CreatorProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, java.lang.Object injectableValueId) -
Uses of AnnotatedParameter in org.codehaus.jackson.map.introspect
Fields in org.codehaus.jackson.map.introspect with type parameters of type AnnotatedParameter Modifier and Type Field Description protected org.codehaus.jackson.map.introspect.POJOPropertyBuilder.Node<AnnotatedParameter>POJOPropertyBuilder. _ctorParametersMethods in org.codehaus.jackson.map.introspect that return AnnotatedParameter Modifier and Type Method Description AnnotatedParameterPOJOPropertyBuilder. getConstructorParameter()AnnotatedParameterAnnotatedWithParams. getParameter(int index)protected AnnotatedParameterAnnotatedWithParams. replaceParameterAnnotations(int index, AnnotationMap ann)Method called by parameter object when an augmented instance is created; needs to replace parameter with new instanceAnnotatedParameterAnnotatedParameter. withAnnotations(AnnotationMap ann)Methods in org.codehaus.jackson.map.introspect with parameters of type AnnotatedParameter Modifier and Type Method Description voidPOJOPropertyBuilder. addCtor(AnnotatedParameter a, java.lang.String ename, boolean visible, boolean ignored)java.lang.StringJacksonAnnotationIntrospector. findPropertyNameForParam(AnnotatedParameter param)java.lang.StringNopAnnotationIntrospector. findPropertyNameForParam(AnnotatedParameter param) -
Uses of AnnotatedParameter in org.codehaus.jackson.xc
Methods in org.codehaus.jackson.xc with parameters of type AnnotatedParameter Modifier and Type Method Description java.lang.StringJaxbAnnotationIntrospector. findPropertyNameForParam(AnnotatedParameter param)
-