Uses of Class
com.fasterxml.jackson.databind.introspect.AnnotatedWithParams
-
Packages that use AnnotatedWithParams Package Description 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.deser.std Contains public standard implementations of abstraction that Jackson uses.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. -
-
Uses of AnnotatedWithParams in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser that return AnnotatedWithParams Modifier and Type Method Description AnnotatedWithParamsValueInstantiator. getArrayDelegateCreator()Method that can be called to try to access member (constructor, static factory method) that is used as the "array delegate creator".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).Methods in com.fasterxml.jackson.databind.deser that return types with arguments of type AnnotatedWithParams Modifier and Type Method Description protected Map<AnnotatedWithParams,BeanPropertyDefinition[]>BasicDeserializerFactory. _findCreatorsFromProperties(DeserializationContext ctxt, BeanDescription beanDesc)Methods in com.fasterxml.jackson.databind.deser with parameters of type AnnotatedWithParams Modifier and Type Method Description protected booleanBasicDeserializerFactory. _handleSingleArgumentCreator(CreatorCollector creators, AnnotatedWithParams ctor, boolean isCreator, boolean isVisible)Method parameters in com.fasterxml.jackson.databind.deser with type arguments of type AnnotatedWithParams Modifier and Type Method Description protected voidBasicDeserializerFactory. _addDeserializerConstructors(DeserializationContext ctxt, BeanDescription beanDesc, VisibilityChecker<?> vchecker, AnnotationIntrospector intr, CreatorCollector creators, Map<AnnotatedWithParams,BeanPropertyDefinition[]> creatorParams)protected voidBasicDeserializerFactory. _addDeserializerFactoryMethods(DeserializationContext ctxt, BeanDescription beanDesc, VisibilityChecker<?> vchecker, AnnotationIntrospector intr, CreatorCollector creators, Map<AnnotatedWithParams,BeanPropertyDefinition[]> creatorParams) -
Uses of AnnotatedWithParams in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as AnnotatedWithParams Modifier and Type Field Description protected AnnotatedWithParamsCreatorCandidate. _creatorprotected AnnotatedWithParams[]CreatorCollector. _creatorsSet of creators we have collected so farMethods in com.fasterxml.jackson.databind.deser.impl that return AnnotatedWithParams Modifier and Type Method Description AnnotatedWithParamsCreatorCandidate. creator()Methods in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotatedWithParams Modifier and Type Method Description protected booleanCreatorCollector. _isEnumValueOf(AnnotatedWithParams creator)Helper method for recognizing `Enum.valueOf()` factory methodvoidCreatorCollector. addBooleanCreator(AnnotatedWithParams creator, boolean explicit)voidCreatorCollector. addDelegatingCreator(AnnotatedWithParams creator, boolean explicit, SettableBeanProperty[] injectables, int delegateeIndex)voidCreatorCollector. addDoubleCreator(AnnotatedWithParams creator, boolean explicit)voidCreatorCollector. addIntCreator(AnnotatedWithParams creator, boolean explicit)voidCreatorCollector. addLongCreator(AnnotatedWithParams creator, boolean explicit)voidCreatorCollector. addPropertyCreator(AnnotatedWithParams creator, boolean explicit, SettableBeanProperty[] properties)voidCreatorCollector. addStringCreator(AnnotatedWithParams creator, boolean explicit)static CreatorCandidateCreatorCandidate. construct(AnnotationIntrospector intr, AnnotatedWithParams creator, BeanPropertyDefinition[] propDefs)voidCreatorCollector. setDefaultCreator(AnnotatedWithParams creator)Method called to indicate the default creator: no-arguments constructor or factory method that is called to instantiate a value before populating it with data.protected booleanCreatorCollector. verifyNonDup(AnnotatedWithParams newOne, int typeIndex, boolean explicit)Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotatedWithParams Constructor Description CreatorCandidate(AnnotationIntrospector intr, AnnotatedWithParams ct, CreatorCandidate.Param[] params, int count) -
Uses of AnnotatedWithParams in com.fasterxml.jackson.databind.deser.std
Fields in com.fasterxml.jackson.databind.deser.std declared as AnnotatedWithParams Modifier and Type Field Description protected AnnotatedWithParamsStdValueInstantiator. _arrayDelegateCreatorprotected AnnotatedWithParamsStdValueInstantiator. _defaultCreatorDefault (no-argument) constructor to use for instantiation (withStdValueInstantiator.createUsingDefault(com.fasterxml.jackson.databind.DeserializationContext))protected AnnotatedWithParamsStdValueInstantiator. _delegateCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromBooleanCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromDoubleCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromIntCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromLongCreatorprotected AnnotatedWithParamsStdValueInstantiator. _fromStringCreatorprotected AnnotatedWithParamsStdValueInstantiator. _withArgsCreatorMethods in com.fasterxml.jackson.databind.deser.std that return AnnotatedWithParams Modifier and Type Method Description AnnotatedWithParamsStdValueInstantiator. getArrayDelegateCreator()AnnotatedWithParamsStdValueInstantiator. getDefaultCreator()AnnotatedWithParamsStdValueInstantiator. getDelegateCreator()AnnotatedWithParamsStdValueInstantiator. getWithArgsCreator()Methods in com.fasterxml.jackson.databind.deser.std with parameters of type AnnotatedWithParams Modifier and Type Method Description voidStdValueInstantiator. configureFromArraySettings(AnnotatedWithParams arrayDelegateCreator, JavaType arrayDelegateType, SettableBeanProperty[] arrayDelegateArgs)voidStdValueInstantiator. configureFromBooleanCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromDoubleCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromIntCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromLongCreator(AnnotatedWithParams creator)voidStdValueInstantiator. configureFromObjectSettings(AnnotatedWithParams defaultCreator, AnnotatedWithParams delegateCreator, JavaType delegateType, SettableBeanProperty[] delegateArgs, AnnotatedWithParams withArgsCreator, SettableBeanProperty[] constructorArgs)Method for setting properties related to instantiating values from JSON Object.voidStdValueInstantiator. configureFromStringCreator(AnnotatedWithParams creator) -
Uses of AnnotatedWithParams in com.fasterxml.jackson.databind.introspect
Subclasses of AnnotatedWithParams in com.fasterxml.jackson.databind.introspect Modifier and Type Class Description classAnnotatedConstructorclassAnnotatedMethodFields in com.fasterxml.jackson.databind.introspect declared as AnnotatedWithParams Modifier and Type Field Description protected AnnotatedWithParamsAnnotatedParameter. _ownerMember (method, constructor) that this parameter belongs toMethods in com.fasterxml.jackson.databind.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 com.fasterxml.jackson.databind.introspect with parameters of type AnnotatedWithParams Constructor Description AnnotatedParameter(AnnotatedWithParams owner, JavaType type, TypeResolutionContext typeContext, AnnotationMap annotations, int index)AnnotatedWithParams(AnnotatedWithParams base, AnnotationMap[] paramAnnotations)
-