java.lang.Object
tools.jackson.databind.introspect.ConcreteBeanPropertyBase
tools.jackson.databind.deser.SettableBeanProperty
tools.jackson.databind.deser.impl.MethodProperty
- All Implemented Interfaces:
Serializable
,Named
,BeanProperty
,FullyNamed
This concrete sub-class implements property that is set
using regular "setter" method.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class tools.jackson.databind.deser.SettableBeanProperty
SettableBeanProperty.Delegating
Nested classes/interfaces inherited from interface tools.jackson.databind.BeanProperty
BeanProperty.Bogus, BeanProperty.Std
Nested classes/interfaces inherited from interface tools.jackson.core.util.Named
Named.StringAsNamed
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final AnnotatedMethod
protected final Method
Setter method for modifying property value; used for "regular" method-accessible properties.protected final boolean
Fields inherited from class tools.jackson.databind.deser.SettableBeanProperty
_contextAnnotations, _managedReferenceName, _nullProvider, _objectIdInfo, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher, _wrapperName, MISSING_VALUE_DESERIALIZER
Fields inherited from class tools.jackson.databind.introspect.ConcreteBeanPropertyBase
_aliases, _metadata
Fields inherited from interface tools.jackson.databind.BeanProperty
EMPTY_FORMAT, EMPTY_INCLUDE
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
MethodProperty
(MethodProperty src, Method m) Constructor used for JDK Serialization when reading persisted objectprotected
MethodProperty
(MethodProperty src, PropertyName newName) protected
MethodProperty
(MethodProperty src, ValueDeserializer<?> deser, NullValueProvider nva) MethodProperty
(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method) -
Method Summary
Modifier and TypeMethodDescriptionvoid
deserializeAndSet
(JsonParser p, DeserializationContext ctxt, Object instance) Method called to deserialize appropriate value, given parser (and context), and set it using appropriate mechanism.deserializeSetAndReturn
(JsonParser p, DeserializationContext ctxt, Object instance) Alternative toSettableBeanProperty.deserializeAndSet(tools.jackson.core.JsonParser, tools.jackson.databind.DeserializationContext, java.lang.Object)
that returns either return value of setter method called (if one is), or null to indicate that no return value is available.void
fixAccess
(DeserializationConfig config) Method called to ensure that the mutator has proper access rights to be called, as per configuration.<A extends Annotation>
AgetAnnotation
(Class<A> acls) Method for finding annotation associated with this property; meaning annotation associated with one of entities used to access property.Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.final void
set
(DeserializationContext ctxt, Object instance, Object value) Method called to assign given value to this property, on specified Object.setAndReturn
(DeserializationContext ctxt, Object instance, Object value) Method called to assign given value to this property, on specified Object, and return whatever delegating accessor returned (if anything)withName
(PropertyName newName) Fluent factory method for constructing and returning a new instance with specified property name.withValueDeserializer
(ValueDeserializer<?> deser) Fluent factory method for constructing and returning a new instance with specified value deserializer.Methods inherited from class tools.jackson.databind.deser.SettableBeanProperty
_throwAsJacksonE, _throwAsJacksonE, assignIndex, depositSchemaProperty, deserialize, deserializeWith, getContextAnnotation, getCreatorIndex, getDeclaringClass, getFullName, getInjectableValueId, getManagedReferenceName, getName, getNullValueProvider, getObjectIdInfo, getPropertyIndex, getType, getValueDeserializer, getValueTypeDeserializer, getWrapperName, hasValueDeserializer, hasValueTypeDeserializer, hasViews, isIgnorable, isInjectionOnly, markAsIgnorable, setManagedReferenceName, setObjectIdInfo, setViews, toString, unwrapped, visibleInView, withSimpleName
Methods inherited from class tools.jackson.databind.introspect.ConcreteBeanPropertyBase
findAliases, findFormatOverrides, findPropertyFormat, findPropertyInclusion, getMetadata, isRequired, isVirtual
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface tools.jackson.databind.util.FullyNamed
hasName
-
Field Details
-
_annotated
-
_setter
Setter method for modifying property value; used for "regular" method-accessible properties. -
_skipNulls
protected final boolean _skipNulls
-
-
Constructor Details
-
MethodProperty
public MethodProperty(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method) -
MethodProperty
-
MethodProperty
-
MethodProperty
Constructor used for JDK Serialization when reading persisted object
-
-
Method Details
-
withName
Description copied from class:SettableBeanProperty
Fluent factory method for constructing and returning a new instance with specified property name. Note that this method should NOT change configuration of this instance.- Specified by:
withName
in classSettableBeanProperty
- Parameters:
newName
- Name to use for the new instance.- Returns:
- Newly constructed instance, if property name differs from the one used for this instance; or 'this' if not.
-
withValueDeserializer
Description copied from class:SettableBeanProperty
Fluent factory method for constructing and returning a new instance with specified value deserializer. Note that this method should NOT change configuration of this instance.- Specified by:
withValueDeserializer
in classSettableBeanProperty
- Parameters:
deser
- Deserializer to assign to the new property instance- Returns:
- Newly constructed instance, if value deserializer differs from the one used for this instance; or 'this' if not.
-
withNullProvider
- Specified by:
withNullProvider
in classSettableBeanProperty
-
fixAccess
Description copied from class:SettableBeanProperty
Method called to ensure that the mutator has proper access rights to be called, as per configuration. Overridden by implementations that have mutators that require access, fields and setters.- Overrides:
fixAccess
in classSettableBeanProperty
-
getAnnotation
Description copied from interface:BeanProperty
Method for finding annotation associated with this property; meaning annotation associated with one of entities used to access property.Note that this method should only be called for custom annotations; access to standard Jackson annotations (or ones supported by alternate
AnnotationIntrospector
s) should be accessed throughAnnotationIntrospector
.- Specified by:
getAnnotation
in interfaceBeanProperty
- Specified by:
getAnnotation
in classSettableBeanProperty
-
getMember
Description copied from interface:BeanProperty
Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.- Specified by:
getMember
in interfaceBeanProperty
- Specified by:
getMember
in classSettableBeanProperty
-
deserializeAndSet
public void deserializeAndSet(JsonParser p, DeserializationContext ctxt, Object instance) throws JacksonException Description copied from class:SettableBeanProperty
Method called to deserialize appropriate value, given parser (and context), and set it using appropriate mechanism. Pre-condition is that passed parser must point to the first token that should be consumed to produce the value (the only value for scalars, multiple for Objects and Arrays).- Specified by:
deserializeAndSet
in classSettableBeanProperty
- Throws:
JacksonException
-
deserializeSetAndReturn
public Object deserializeSetAndReturn(JsonParser p, DeserializationContext ctxt, Object instance) throws JacksonException Description copied from class:SettableBeanProperty
Alternative toSettableBeanProperty.deserializeAndSet(tools.jackson.core.JsonParser, tools.jackson.databind.DeserializationContext, java.lang.Object)
that returns either return value of setter method called (if one is), or null to indicate that no return value is available. Mostly used to support Builder style deserialization.- Specified by:
deserializeSetAndReturn
in classSettableBeanProperty
- Throws:
JacksonException
-
set
public final void set(DeserializationContext ctxt, Object instance, Object value) throws JacksonException Description copied from class:SettableBeanProperty
Method called to assign given value to this property, on specified Object.Note: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.
- Specified by:
set
in classSettableBeanProperty
- Throws:
JacksonException
-
setAndReturn
public Object setAndReturn(DeserializationContext ctxt, Object instance, Object value) throws JacksonException Description copied from class:SettableBeanProperty
Method called to assign given value to this property, on specified Object, and return whatever delegating accessor returned (if anything)Note: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.
- Specified by:
setAndReturn
in classSettableBeanProperty
- Throws:
JacksonException
-