Uses of Class
org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
Packages that use AnnotatedWithParams Package Description org.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.deser.std Contains public standard implementations of abstraction that Jackson uses.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. -
-
Uses of AnnotatedWithParams in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser that return AnnotatedWithParams Modifier and Type Method Description AnnotatedWithParamsValueInstantiator. getDefaultCreator()Method that can be called to try to access member (constructor, static factory method) that is used as the "default creator" (creator that is called without arguments; typically default [zero-argument] constructor of the type).AnnotatedWithParamsValueInstantiator. getDelegateCreator()Method that can be called to try to access member (constructor, static factory method) that is used as the "delegate creator".AnnotatedWithParamsValueInstantiator. getWithArgsCreator()Method that can be called to try to access member (constructor, static factory method) that is used as the "non-default creator" (constructor or factory method that takes one or more arguments). -
Uses of AnnotatedWithParams in org.codehaus.jackson.map.deser.impl
Fields in org.codehaus.jackson.map.deser.impl declared as AnnotatedWithParams Modifier and Type Field Description protected AnnotatedWithParamsCreatorCollector. _booleanCreatorprotected AnnotatedWithParamsCreatorCollector. _delegateCreatorprotected AnnotatedWithParamsCreatorCollector. _doubleCreatorprotected AnnotatedWithParamsCreatorCollector. _intCreatorprotected AnnotatedWithParamsCreatorCollector. _longCreatorprotected AnnotatedWithParamsCreatorCollector. _propertyBasedCreatorprotected AnnotatedWithParamsCreatorCollector. _stringCreatorMethods in org.codehaus.jackson.map.deser.impl that return AnnotatedWithParams Modifier and Type Method Description protected AnnotatedWithParamsCreatorCollector. verifyNonDup(AnnotatedWithParams newOne, AnnotatedWithParams oldOne, java.lang.String type)Methods in org.codehaus.jackson.map.deser.impl with parameters of type AnnotatedWithParams Modifier and Type Method Description voidCreatorCollector. addBooleanCreator(AnnotatedWithParams creator)voidCreatorCollector. addDelegatingCreator(AnnotatedWithParams creator)voidCreatorCollector. addDoubleCreator(AnnotatedWithParams creator)voidCreatorCollector. addIntCreator(AnnotatedWithParams creator)voidCreatorCollector. addLongCreator(AnnotatedWithParams creator)voidCreatorCollector. addPropertyCreator(AnnotatedWithParams creator, CreatorProperty[] properties)voidCreatorCollector. addStringCreator(AnnotatedWithParams creator)protected AnnotatedWithParamsCreatorCollector. verifyNonDup(AnnotatedWithParams newOne, AnnotatedWithParams oldOne, java.lang.String type) -
Uses of AnnotatedWithParams in org.codehaus.jackson.map.deser.std
Fields in org.codehaus.jackson.map.deser.std declared as AnnotatedWithParams Modifier and Type Field Description protected AnnotatedWithParamsStdValueInstantiator. _defaultCreatorDefault (no-argument) constructor to use for instantiation (withStdValueInstantiator.createUsingDefault())protected AnnotatedWithParamsStdValueInstantiator. _delegateCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromBooleanCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromDoubleCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromIntCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromLongCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromStringCreatorprotected AnnotatedWithParamsStdValueInstantiator. _withArgsCreatorMethods in org.codehaus.jackson.map.deser.std that return AnnotatedWithParams Modifier and Type Method Description AnnotatedWithParamsStdValueInstantiator. getDefaultCreator()AnnotatedWithParamsStdValueInstantiator. getDelegateCreator()AnnotatedWithParamsStdValueInstantiator. getWithArgsCreator()Methods in org.codehaus.jackson.map.deser.std with parameters of type AnnotatedWithParams Modifier and Type Method Description voidStdValueInstantiator. configureFromBooleanCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromDoubleCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromIntCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromLongCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromObjectSettings(AnnotatedWithParams defaultCreator, AnnotatedWithParams delegateCreator, JavaType delegateType, AnnotatedWithParams withArgsCreator, CreatorProperty[] constructorArgs)Method for setting properties related to instantiating values from JSON Object.voidStdValueInstantiator. configureFromStringCreator(AnnotatedWithParams creator) -
Uses of AnnotatedWithParams in org.codehaus.jackson.map.introspect
Subclasses of AnnotatedWithParams in org.codehaus.jackson.map.introspect Modifier and Type Class Description classAnnotatedConstructorclassAnnotatedMethodFields in org.codehaus.jackson.map.introspect declared as AnnotatedWithParams Modifier and Type Field Description protected AnnotatedWithParamsAnnotatedParameter. _ownerMember (method, constructor) that this parameter belongs toMethods in org.codehaus.jackson.map.introspect that return AnnotatedWithParams Modifier and Type Method Description AnnotatedWithParamsAnnotatedParameter. getOwner()Accessor for 'owner' of this parameter; method or constructor that has this parameter as member of its argument list.Constructors in org.codehaus.jackson.map.introspect with parameters of type AnnotatedWithParams Constructor Description AnnotatedParameter(AnnotatedWithParams owner, java.lang.reflect.Type type, AnnotationMap annotations, int index)
-