|
||||||||||
| 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.ManagedReferenceProperty
public final class ManagedReferenceProperty
Wrapper property that is used to handle managed (forward) properties (see [JACKSON-235] for more information). Basically just need to delegate first to actual forward property, and
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface com.fasterxml.jackson.databind.BeanProperty |
|---|
BeanProperty.Std |
| Field Summary | |
|---|---|
protected SettableBeanProperty |
_backProperty
|
protected boolean |
_isContainer
Flag that indicates whether property to handle is a container type (array, Collection, Map) or not. |
protected SettableBeanProperty |
_managedProperty
|
protected String |
_referenceName
|
| Fields inherited from class com.fasterxml.jackson.databind.deser.SettableBeanProperty |
|---|
_contextAnnotations, _managedReferenceName, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher |
| Constructor Summary | |
|---|---|
protected |
ManagedReferenceProperty(ManagedReferenceProperty src,
JsonDeserializer<?> deser)
|
protected |
ManagedReferenceProperty(ManagedReferenceProperty src,
String newName)
|
|
ManagedReferenceProperty(SettableBeanProperty forward,
String refName,
SettableBeanProperty backward,
Annotations contextAnnotations,
boolean isContainer)
|
| Method Summary | ||
|---|---|---|
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. |
|
|
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) |
|
ManagedReferenceProperty |
withName(String newName)
Fluent factory method for constructing and returning a new instance with specified propert name. |
|
ManagedReferenceProperty |
withValueDeserializer(JsonDeserializer<?> deser)
Fluent factory method for constructing and returning a new instance with specified value deserializer. |
|
| Methods inherited from class com.fasterxml.jackson.databind.deser.SettableBeanProperty |
|---|
_throwAsIOE, _throwAsIOE, assignIndex, deserialize, getContextAnnotation, getCreatorIndex, 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 String _referenceName
protected final boolean _isContainer
protected final SettableBeanProperty _managedProperty
protected final SettableBeanProperty _backProperty
| Constructor Detail |
|---|
public ManagedReferenceProperty(SettableBeanProperty forward,
String refName,
SettableBeanProperty backward,
Annotations contextAnnotations,
boolean isContainer)
protected ManagedReferenceProperty(ManagedReferenceProperty src,
JsonDeserializer<?> deser)
protected ManagedReferenceProperty(ManagedReferenceProperty src,
String newName)
| Method Detail |
|---|
public ManagedReferenceProperty withName(String newName)
SettableBeanProperty
withName in class SettableBeanPropertynewName - Name to use for the new instance.
public ManagedReferenceProperty withValueDeserializer(JsonDeserializer<?> deser)
SettableBeanProperty
withValueDeserializer in class SettableBeanPropertydeser - Deserializer to assign to the new property instance
public <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(JsonParser jp,
DeserializationContext ctxt,
Object instance)
throws IOException,
JsonProcessingException
SettableBeanProperty
deserializeAndSet in class SettableBeanPropertyIOException
JsonProcessingException
public 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 SettableBeanPropertyIOException
JsonProcessingException
public 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 SettableBeanPropertyIOException
public 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 SettableBeanPropertyIOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||