Uses of Class
com.fasterxml.jackson.databind.introspect.AnnotatedWithParams
Packages that use AnnotatedWithParams
Package
Description
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.
Contains public standard implementations of abstraction that
Jackson uses.
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
Fields in com.fasterxml.jackson.databind.deser with type parameters of type AnnotatedWithParamsModifier and TypeFieldDescriptionfinal Map<AnnotatedWithParams, BeanPropertyDefinition[]> BasicDeserializerFactory.CreatorCollectionState.creatorParamsMethods in com.fasterxml.jackson.databind.deser that return AnnotatedWithParamsModifier and TypeMethodDescriptionValueInstantiator.Delegating.getArrayDelegateCreator()ValueInstantiator.getArrayDelegateCreator()Method that can be called to try to access member (constructor, static factory method) that is used as the "array delegate creator".ValueInstantiator.Delegating.getDefaultCreator()ValueInstantiator.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).ValueInstantiator.Delegating.getDelegateCreator()ValueInstantiator.getDelegateCreator()Method that can be called to try to access member (constructor, static factory method) that is used as the "delegate creator".ValueInstantiator.Delegating.getWithArgsCreator()ValueInstantiator.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 AnnotatedWithParamsModifier and TypeMethodDescriptionprotected Map<AnnotatedWithParams, BeanPropertyDefinition[]> BasicDeserializerFactory._findCreatorsFromProperties(DeserializationContext ctxt, BeanDescription beanDesc) Methods in com.fasterxml.jackson.databind.deser with parameters of type AnnotatedWithParamsModifier and TypeMethodDescriptionprotected booleanBasicDeserializerFactory._handleSingleArgumentCreator(CreatorCollector creators, AnnotatedWithParams ctor, boolean isCreator, boolean isVisible) Constructor parameters in com.fasterxml.jackson.databind.deser with type arguments of type AnnotatedWithParamsModifierConstructorDescriptionCreatorCollectionState(DeserializationContext ctxt, BeanDescription bd, VisibilityChecker<?> vc, CreatorCollector cc, Map<AnnotatedWithParams, BeanPropertyDefinition[]> cp) -
Uses of AnnotatedWithParams in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as AnnotatedWithParamsModifier and TypeFieldDescriptionprotected final AnnotatedWithParamsCreatorCandidate._creatorprotected final AnnotatedWithParams[]CreatorCollector._creatorsSet of creators we have collected so farMethods in com.fasterxml.jackson.databind.deser.impl that return AnnotatedWithParamsMethods in com.fasterxml.jackson.databind.deser.impl with parameters of type AnnotatedWithParamsModifier and TypeMethodDescriptionprotected booleanCreatorCollector._isEnumValueOf(AnnotatedWithParams creator) Helper method for recognizing `Enum.valueOf()` factory methodprotected voidCreatorCollector._reportDuplicateCreator(int typeIndex, boolean explicit, AnnotatedWithParams oldOne, AnnotatedWithParams newOne) voidCreatorCollector.addBigDecimalCreator(AnnotatedWithParams creator, boolean explicit) voidCreatorCollector.addBigIntegerCreator(AnnotatedWithParams creator, boolean explicit) voidCreatorCollector.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 AnnotatedWithParamsModifierConstructorDescriptionprotectedCreatorCandidate(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 AnnotatedWithParamsModifier and TypeFieldDescriptionprotected AnnotatedWithParamsStdValueInstantiator._arrayDelegateCreatorprotected AnnotatedWithParamsStdValueInstantiator._defaultCreatorDefault (no-argument) constructor to use for instantiation (withStdValueInstantiator.createUsingDefault(DeserializationContext))protected AnnotatedWithParamsStdValueInstantiator._delegateCreatorprotected AnnotatedWithParamsStdValueInstantiator._fromBigDecimalCreatorprotected AnnotatedWithParamsStdValueInstantiator._fromBigIntegerCreatorprotected AnnotatedWithParamsStdValueInstantiator._fromBooleanCreatorprotected AnnotatedWithParamsStdValueInstantiator._fromDoubleCreatorprotected AnnotatedWithParamsStdValueInstantiator._fromIntCreatorprotected AnnotatedWithParamsStdValueInstantiator._fromLongCreatorprotected AnnotatedWithParamsStdValueInstantiator._fromStringCreatorprotected AnnotatedWithParamsStdValueInstantiator._withArgsCreatorMethods in com.fasterxml.jackson.databind.deser.std that return AnnotatedWithParamsModifier and TypeMethodDescriptionStdValueInstantiator.getArrayDelegateCreator()StdValueInstantiator.getDefaultCreator()StdValueInstantiator.getDelegateCreator()StdValueInstantiator.getWithArgsCreator()Methods in com.fasterxml.jackson.databind.deser.std with parameters of type AnnotatedWithParamsModifier and TypeMethodDescriptionvoidStdValueInstantiator.configureFromArraySettings(AnnotatedWithParams arrayDelegateCreator, JavaType arrayDelegateType, SettableBeanProperty[] arrayDelegateArgs) voidStdValueInstantiator.configureFromBigDecimalCreator(AnnotatedWithParams creator) voidStdValueInstantiator.configureFromBigIntegerCreator(AnnotatedWithParams creator) 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.introspectFields in com.fasterxml.jackson.databind.introspect declared as AnnotatedWithParamsModifier and TypeFieldDescriptionprotected final AnnotatedWithParamsAnnotatedParameter._ownerMember (method, constructor) that this parameter belongs toMethods in com.fasterxml.jackson.databind.introspect that return AnnotatedWithParamsModifier and TypeMethodDescriptionAnnotatedParameter.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 AnnotatedWithParamsModifierConstructorDescriptionAnnotatedParameter(AnnotatedWithParams owner, JavaType type, TypeResolutionContext typeContext, AnnotationMap annotations, int index) protectedAnnotatedWithParams(AnnotatedWithParams base, AnnotationMap[] paramAnnotations)