public final class InnerClassProperty extends SettableBeanProperty
BeanProperty.Std| Modifier and Type | Field and Description |
|---|---|
protected java.lang.reflect.Constructor<?> |
_creator
Single-arg constructor we use for value instantiation.
|
protected SettableBeanProperty |
_delegate
Actual property that we use after value construction.
|
_contextAnnotations, _isRequired, _managedReferenceName, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher, _wrapperName, MISSING_VALUE_DESERIALIZER| Modifier | Constructor and Description |
|---|---|
protected |
InnerClassProperty(InnerClassProperty src,
JsonDeserializer<?> deser) |
protected |
InnerClassProperty(InnerClassProperty src,
java.lang.String newName) |
|
InnerClassProperty(SettableBeanProperty delegate,
java.lang.reflect.Constructor<?> ctor) |
| Modifier and Type | Method and Description |
|---|---|
void |
deserializeAndSet(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
java.lang.Object bean)
Method called to deserialize appropriate value, given parser (and
context), and set it using appropriate mechanism.
|
java.lang.Object |
deserializeSetAndReturn(com.fasterxml.jackson.core.JsonParser jp,
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. |
<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.
|
AnnotatedMember |
getMember()
Method for accessing primary physical entity that represents the property;
annotated field, method or constructor property.
|
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)
|
InnerClassProperty |
withName(java.lang.String 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, getInjectableValueId, getManagedReferenceName, getName, getPropertyIndex, getType, getValueDeserializer, getValueTypeDeserializer, getWrapperName, hasValueDeserializer, hasValueTypeDeserializer, hasViews, isRequired, setManagedReferenceName, setViews, toString, visibleInViewprotected final SettableBeanProperty _delegate
protected final java.lang.reflect.Constructor<?> _creator
public InnerClassProperty(SettableBeanProperty delegate, java.lang.reflect.Constructor<?> ctor)
protected InnerClassProperty(InnerClassProperty src, JsonDeserializer<?> deser)
protected InnerClassProperty(InnerClassProperty src, java.lang.String newName)
public InnerClassProperty withName(java.lang.String newName)
SettableBeanPropertywithName in class SettableBeanPropertynewName - Name to use for the new instance.public InnerClassProperty withValueDeserializer(JsonDeserializer<?> deser)
SettableBeanPropertywithValueDeserializer in class SettableBeanPropertydeser - Deserializer to assign to the new property instancepublic <A extends java.lang.annotation.Annotation> A getAnnotation(java.lang.Class<A> acls)
BeanPropertygetAnnotation in interface BeanPropertygetAnnotation in class SettableBeanPropertypublic AnnotatedMember getMember()
BeanPropertygetMember in interface BeanPropertygetMember in class SettableBeanPropertypublic void deserializeAndSet(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
java.lang.Object bean)
throws java.io.IOException,
com.fasterxml.jackson.core.JsonProcessingException
SettableBeanPropertydeserializeAndSet in class SettableBeanPropertyjava.io.IOExceptioncom.fasterxml.jackson.core.JsonProcessingExceptionpublic java.lang.Object deserializeSetAndReturn(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
java.lang.Object instance)
throws java.io.IOException,
com.fasterxml.jackson.core.JsonProcessingException
SettableBeanPropertySettableBeanProperty.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 SettableBeanPropertyjava.io.IOExceptioncom.fasterxml.jackson.core.JsonProcessingExceptionpublic final void set(java.lang.Object instance,
java.lang.Object value)
throws java.io.IOException
SettableBeanPropertyNote: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.
set in class SettableBeanPropertyjava.io.IOExceptionpublic java.lang.Object setAndReturn(java.lang.Object instance,
java.lang.Object value)
throws java.io.IOException
SettableBeanPropertyNote: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.
setAndReturn in class SettableBeanPropertyjava.io.IOExceptionCopyright © 2013. All Rights Reserved.