public final class InnerClassProperty extends SettableBeanProperty
BeanProperty.Std
Modifier and Type | Field and Description |
---|---|
protected AnnotatedConstructor |
_annotated
Serializable version of single-arg constructor we use for value instantiation.
|
protected Constructor<?> |
_creator
Constructor used when deserializing this property.
|
protected SettableBeanProperty |
_delegate
Actual property that we use after value construction.
|
_contextAnnotations, _managedReferenceName, _metadata, _nullProvider, _objectIdInfo, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher, _wrapperName, MISSING_VALUE_DESERIALIZER
Modifier | Constructor and Description |
---|---|
protected |
InnerClassProperty(InnerClassProperty src,
AnnotatedConstructor ann)
Constructor used with JDK Serialization; needed to handle transient
Constructor, wrap/unwrap in/out-of Annotated variant.
|
protected |
InnerClassProperty(InnerClassProperty src,
JsonDeserializer<?> deser) |
protected |
InnerClassProperty(InnerClassProperty src,
PropertyName newName) |
|
InnerClassProperty(SettableBeanProperty delegate,
Constructor<?> ctor) |
Modifier and Type | Method and Description |
---|---|
void |
deserializeAndSet(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
Object bean)
Method called to deserialize appropriate value, given parser (and
context), and set it using appropriate mechanism.
|
Object |
deserializeSetAndReturn(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
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. |
<A extends Annotation> |
getAnnotation(Class<A> acls)
Method for finding annotation associated with this property;
meaning annotation associated with one of entities used to
access property.
|
AnnotatedMember |
getMember()
Method for accessing primary physical entity that represents the property;
annotated field, method or constructor property.
|
void |
set(Object instance,
Object value)
Method called to assign given value to this property, on
specified Object.
|
Object |
setAndReturn(Object instance,
Object value)
Method called to assign given value to this property, on
specified Object, and return whatever delegating accessor
returned (if anything)
|
InnerClassProperty |
withName(PropertyName newName)
Fluent factory method for constructing and returning a new instance
with specified property name.
|
InnerClassProperty |
withValueDeserializer(JsonDeserializer<?> deser)
Fluent factory method for constructing and returning a new instance
with specified value deserializer.
|
_throwAsIOE, _throwAsIOE, assignIndex, depositSchemaProperty, deserialize, getContextAnnotation, getCreatorIndex, getDeclaringClass, getFullName, getInjectableValueId, getManagedReferenceName, getMetadata, getName, getObjectIdInfo, getPropertyIndex, getType, getValueDeserializer, getValueTypeDeserializer, getWrapperName, hasValueDeserializer, hasValueTypeDeserializer, hasViews, isRequired, setManagedReferenceName, setObjectIdInfo, setViews, toString, visibleInView, withName, withSimpleName
protected final SettableBeanProperty _delegate
protected final transient Constructor<?> _creator
protected AnnotatedConstructor _annotated
public InnerClassProperty(SettableBeanProperty delegate, Constructor<?> ctor)
protected InnerClassProperty(InnerClassProperty src, AnnotatedConstructor ann)
protected InnerClassProperty(InnerClassProperty src, JsonDeserializer<?> deser)
protected InnerClassProperty(InnerClassProperty src, PropertyName newName)
public InnerClassProperty withName(PropertyName newName)
SettableBeanProperty
withName
in class SettableBeanProperty
newName
- Name to use for the new instance.public InnerClassProperty withValueDeserializer(JsonDeserializer<?> deser)
SettableBeanProperty
withValueDeserializer
in class SettableBeanProperty
deser
- Deserializer to assign to the new property instancepublic <A extends Annotation> A getAnnotation(Class<A> acls)
BeanProperty
getAnnotation
in interface BeanProperty
getAnnotation
in class SettableBeanProperty
public AnnotatedMember getMember()
BeanProperty
getMember
in interface BeanProperty
getMember
in class SettableBeanProperty
public void deserializeAndSet(com.fasterxml.jackson.core.JsonParser jp, DeserializationContext ctxt, Object bean) throws IOException
SettableBeanProperty
deserializeAndSet
in class SettableBeanProperty
IOException
public Object deserializeSetAndReturn(com.fasterxml.jackson.core.JsonParser jp, DeserializationContext ctxt, Object instance) throws 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
IOException
public final void set(Object instance, Object value) throws 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
IOException
public Object setAndReturn(Object instance, Object value) throws 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
IOException
Copyright © 2014-2015 FasterXML. All Rights Reserved.