public final class MethodProperty extends SettableBeanProperty
BeanProperty.Std| Modifier and Type | Field and Description |
|---|---|
protected AnnotatedMethod |
_annotated |
protected Method |
_setter
Setter method for modifying property value; used for
"regular" method-accessible properties.
|
_contextAnnotations, _isRequired, _managedReferenceName, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher, _wrapperName, MISSING_VALUE_DESERIALIZER| Modifier | Constructor and Description |
|---|---|
|
MethodProperty(BeanPropertyDefinition propDef,
JavaType type,
TypeDeserializer typeDeser,
Annotations contextAnnotations,
AnnotatedMethod method) |
protected |
MethodProperty(MethodProperty src,
JsonDeserializer<?> deser) |
protected |
MethodProperty(MethodProperty src,
Method m)
Constructor used for JDK Serialization when reading persisted object
|
protected |
MethodProperty(MethodProperty src,
String newName) |
| Modifier and Type | Method and Description |
|---|---|
void |
deserializeAndSet(JsonParser jp,
DeserializationContext ctxt,
Object instance)
Method called to deserialize appropriate value, given parser (and
context), and set it using appropriate mechanism.
|
Object |
deserializeSetAndReturn(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)
|
MethodProperty |
withName(String newName)
Fluent factory method for constructing and returning a new instance
with specified propert name.
|
MethodProperty |
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 AnnotatedMethod _annotated
protected final transient Method _setter
public MethodProperty(BeanPropertyDefinition propDef, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method)
protected MethodProperty(MethodProperty src, JsonDeserializer<?> deser)
protected MethodProperty(MethodProperty src, String newName)
protected MethodProperty(MethodProperty src, Method m)
public MethodProperty withName(String newName)
SettableBeanPropertywithName in class SettableBeanPropertynewName - Name to use for the new instance.public MethodProperty withValueDeserializer(JsonDeserializer<?> deser)
SettableBeanPropertywithValueDeserializer in class SettableBeanPropertydeser - Deserializer to assign to the new property instancepublic <A extends Annotation> A getAnnotation(Class<A> acls)
BeanPropertygetAnnotation in interface BeanPropertygetAnnotation in class SettableBeanPropertypublic AnnotatedMember getMember()
BeanPropertygetMember in interface BeanPropertygetMember in class SettableBeanPropertypublic void deserializeAndSet(JsonParser jp, DeserializationContext ctxt, Object instance) throws IOException, JsonProcessingException
SettableBeanPropertydeserializeAndSet in class SettableBeanPropertyIOExceptionJsonProcessingExceptionpublic Object deserializeSetAndReturn(JsonParser jp, DeserializationContext ctxt, Object instance) throws IOException, 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 SettableBeanPropertyIOExceptionJsonProcessingExceptionpublic final void set(Object instance, Object value) throws 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 SettableBeanPropertyIOExceptionpublic Object setAndReturn(Object instance, Object value) throws 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 SettableBeanPropertyIOExceptionCopyright © 2012-2013 FasterXML. All Rights Reserved.