public class CreatorProperty extends SettableBeanProperty
Note on injectable values: unlike with other mutators, where deserializer and injecting are separate, here we treat the two as related things. This is necessary to add proper priority, as well as to simplify coordination.
SettableBeanProperty.Delegating
BeanProperty.Bogus, BeanProperty.Std
EMPTY_FORMAT, EMPTY_INCLUDE
Constructor and Description |
---|
CreatorProperty(PropertyName name,
JavaType type,
PropertyName wrapperName,
TypeDeserializer typeDeser,
Annotations contextAnnotations,
AnnotatedParameter param,
int index,
java.lang.Object injectableValueId,
PropertyMetadata metadata) |
Modifier and Type | Method and Description |
---|---|
void |
deserializeAndSet(JsonParser p,
DeserializationContext ctxt,
java.lang.Object instance)
Method called to deserialize appropriate value, given parser (and
context), and set it using appropriate mechanism.
|
java.lang.Object |
deserializeSetAndReturn(JsonParser p,
DeserializationContext ctxt,
java.lang.Object instance)
Alternative to
SettableBeanProperty.deserializeAndSet(com.fasterxml.jackson.core.JsonParser, com.fasterxml.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. |
java.lang.Object |
findInjectableValue(DeserializationContext context,
java.lang.Object beanInstance)
Method that can be called to locate value to be injected for this
property, if it is configured for this.
|
void |
fixAccess(DeserializationConfig config)
Method called to ensure that the mutator has proper access rights to
be called, as per configuration.
|
<A extends java.lang.annotation.Annotation> |
getAnnotation(java.lang.Class<A> acls)
Method for finding annotation associated with this property;
meaning annotation associated with one of entities used to
access property.
|
int |
getCreatorIndex()
Method for accessing index of the creator property: for other
types of properties will simply return -1.
|
java.lang.Object |
getInjectableValueId()
Accessor for id of injectable value, if this bean property supports
value injection.
|
AnnotatedMember |
getMember()
Method for accessing primary physical entity that represents the property;
annotated field, method or constructor property.
|
PropertyMetadata |
getMetadata()
Accessor for additional optional information about property.
|
void |
inject(DeserializationContext context,
java.lang.Object beanInstance)
Method to find value to inject, and inject it to this property.
|
boolean |
isIgnorable() |
void |
markAsIgnorable() |
void |
set(java.lang.Object instance,
java.lang.Object value)
Method called to assign given value to this property, on
specified Object.
|
java.lang.Object |
setAndReturn(java.lang.Object instance,
java.lang.Object value)
Method called to assign given value to this property, on
specified Object, and return whatever delegating accessor
returned (if anything)
|
void |
setFallbackSetter(SettableBeanProperty fallbackSetter)
NOTE: one exception to immutability, due to problems with CreatorProperty instances
being shared between Bean, separate PropertyBasedCreator
|
java.lang.String |
toString() |
SettableBeanProperty |
withName(PropertyName newName)
Fluent factory method for constructing and returning a new instance
with specified property name.
|
SettableBeanProperty |
withNullProvider(NullValueProvider nva) |
SettableBeanProperty |
withValueDeserializer(JsonDeserializer<?> deser)
Fluent factory method for constructing and returning a new instance
with specified value deserializer.
|
assignIndex, depositSchemaProperty, deserialize, deserializeWith, getContextAnnotation, getFullName, getManagedReferenceName, getName, getNullValueProvider, getObjectIdInfo, getPropertyIndex, getType, getValueDeserializer, getValueTypeDeserializer, getWrapperName, hasValueDeserializer, hasValueTypeDeserializer, hasViews, setManagedReferenceName, setObjectIdInfo, setViews, visibleInView, withSimpleName
findAliases, findFormatOverrides, findPropertyFormat, findPropertyInclusion, isRequired, isVirtual
public CreatorProperty(PropertyName name, JavaType type, PropertyName wrapperName, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, java.lang.Object injectableValueId, PropertyMetadata metadata)
name
- Name of the logical propertytype
- Type of the property, used to find deserializertypeDeser
- Type deserializer to use for handling polymorphic type
information, if one is neededcontextAnnotations
- Contextual annotations (usually by class that
declares creator [constructor, factory method] that includes
this property)param
- Representation of property, constructor or factory
method parameter; used for accessing annotations of the propertyindex
- Index of this property within creator invocationpublic SettableBeanProperty withName(PropertyName newName)
SettableBeanProperty
withName
in class SettableBeanProperty
newName
- Name to use for the new instance.public SettableBeanProperty withValueDeserializer(JsonDeserializer<?> deser)
SettableBeanProperty
withValueDeserializer
in class SettableBeanProperty
deser
- Deserializer to assign to the new property instancepublic SettableBeanProperty withNullProvider(NullValueProvider nva)
withNullProvider
in class SettableBeanProperty
public void fixAccess(DeserializationConfig config)
SettableBeanProperty
fixAccess
in class SettableBeanProperty
public void setFallbackSetter(SettableBeanProperty fallbackSetter)
public void markAsIgnorable()
markAsIgnorable
in class SettableBeanProperty
public boolean isIgnorable()
isIgnorable
in class SettableBeanProperty
public java.lang.Object findInjectableValue(DeserializationContext context, java.lang.Object beanInstance) throws JsonMappingException
JsonMappingException
public void inject(DeserializationContext context, java.lang.Object beanInstance) throws java.io.IOException
java.io.IOException
public <A extends java.lang.annotation.Annotation> A getAnnotation(java.lang.Class<A> acls)
BeanProperty
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
through AnnotationIntrospector
.
getAnnotation
in interface BeanProperty
getAnnotation
in class SettableBeanProperty
public AnnotatedMember getMember()
BeanProperty
getMember
in interface BeanProperty
getMember
in class SettableBeanProperty
public int getCreatorIndex()
SettableBeanProperty
getCreatorIndex
in class SettableBeanProperty
public void deserializeAndSet(JsonParser p, DeserializationContext ctxt, java.lang.Object instance) throws java.io.IOException
SettableBeanProperty
deserializeAndSet
in class SettableBeanProperty
java.io.IOException
public java.lang.Object deserializeSetAndReturn(JsonParser p, DeserializationContext ctxt, java.lang.Object instance) throws java.io.IOException
SettableBeanProperty
SettableBeanProperty.deserializeAndSet(com.fasterxml.jackson.core.JsonParser, com.fasterxml.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.deserializeSetAndReturn
in class SettableBeanProperty
java.io.IOException
public void set(java.lang.Object instance, java.lang.Object value) throws java.io.IOException
SettableBeanProperty
Note: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.
set
in class SettableBeanProperty
java.io.IOException
public java.lang.Object setAndReturn(java.lang.Object instance, java.lang.Object value) throws java.io.IOException
SettableBeanProperty
Note: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.
setAndReturn
in class SettableBeanProperty
java.io.IOException
public PropertyMetadata getMetadata()
BeanProperty
getMetadata
in interface BeanProperty
getMetadata
in class ConcreteBeanPropertyBase
public java.lang.Object getInjectableValueId()
SettableBeanProperty
getInjectableValueId
in class SettableBeanProperty
public java.lang.String toString()
toString
in class SettableBeanProperty
Copyright © 2010 - 2020 Adobe. All Rights Reserved