|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.fasterxml.jackson.databind.deser.SettableBeanProperty
com.fasterxml.jackson.databind.deser.impl.MethodProperty
public final class MethodProperty
This concrete sub-class implements property that is set using regular "setter" method.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.BeanProperty |
|---|
BeanProperty.Std |
| Field Summary | |
|---|---|
protected AnnotatedMethod |
_annotated
|
protected Method |
_setter
Setter method for modifying property value; used for "regular" method-accessible properties. |
| Fields inherited from class com.fasterxml.jackson.databind.deser.SettableBeanProperty |
|---|
_contextAnnotations, _managedReferenceName, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher |
| Constructor Summary | |
|---|---|
|
MethodProperty(BeanPropertyDefinition propDef,
JavaType type,
TypeDeserializer typeDeser,
Annotations contextAnnotations,
AnnotatedMethod method)
|
protected |
MethodProperty(MethodProperty src,
JsonDeserializer<?> deser)
|
protected |
MethodProperty(MethodProperty src,
String newName)
|
| Method Summary | ||
|---|---|---|
void |
deserializeAndSet(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
Object instance)
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. |
|
|
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)
|
|
MethodProperty |
withValueDeserializer(JsonDeserializer<?> deser)
|
|
| Methods inherited from class com.fasterxml.jackson.databind.deser.SettableBeanProperty |
|---|
_throwAsIOE, _throwAsIOE, assignIndex, deserialize, getContextAnnotation, getDeclaringClass, getInjectableValueId, getManagedReferenceName, getName, getPropertyIndex, getType, getValueDeserializer, getValueTypeDeserializer, hasValueDeserializer, hasValueTypeDeserializer, hasViews, setManagedReferenceName, setViews, toString, visibleInView |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected final AnnotatedMethod _annotated
protected final Method _setter
| Constructor Detail |
|---|
public MethodProperty(BeanPropertyDefinition propDef,
JavaType type,
TypeDeserializer typeDeser,
Annotations contextAnnotations,
AnnotatedMethod method)
protected MethodProperty(MethodProperty src,
JsonDeserializer<?> deser)
protected MethodProperty(MethodProperty src,
String newName)
| Method Detail |
|---|
public MethodProperty withName(String newName)
withName in class SettableBeanPropertypublic MethodProperty withValueDeserializer(JsonDeserializer<?> deser)
withValueDeserializer in class SettableBeanPropertypublic <A extends Annotation> A getAnnotation(Class<A> acls)
BeanProperty
getAnnotation in interface BeanPropertygetAnnotation in class SettableBeanPropertypublic AnnotatedMember getMember()
BeanProperty
getMember in interface BeanPropertygetMember in class SettableBeanProperty
public void deserializeAndSet(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
Object instance)
throws IOException,
com.fasterxml.jackson.core.JsonProcessingException
SettableBeanProperty
deserializeAndSet in class SettableBeanPropertyIOException
com.fasterxml.jackson.core.JsonProcessingException
public Object deserializeSetAndReturn(com.fasterxml.jackson.core.JsonParser jp,
DeserializationContext ctxt,
Object instance)
throws 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 SettableBeanPropertyIOException
com.fasterxml.jackson.core.JsonProcessingException
public final void set(Object instance,
Object value)
throws IOException
SettableBeanProperty
set in class SettableBeanPropertyIOException
public Object setAndReturn(Object instance,
Object value)
throws IOException
SettableBeanProperty
setAndReturn in class SettableBeanPropertyIOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||