public final class ObjectIdValueProperty extends SettableBeanProperty
SettableBeanProperty implementation used
for virtual property that represents Object Id that is used
for some POJO types (or properties).BeanProperty.Std| Modifier and Type | Field and Description |
|---|---|
protected ObjectIdReader |
_objectIdReader |
_contextAnnotations, _managedReferenceName, _metadata, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher, _wrapperName, MISSING_VALUE_DESERIALIZER| Modifier | Constructor and Description |
|---|---|
|
ObjectIdValueProperty(ObjectIdReader objectIdReader)
Deprecated.
|
|
ObjectIdValueProperty(ObjectIdReader objectIdReader,
PropertyMetadata metadata) |
protected |
ObjectIdValueProperty(ObjectIdValueProperty src,
JsonDeserializer<?> deser) |
protected |
ObjectIdValueProperty(ObjectIdValueProperty src,
PropertyName newName)
Deprecated.
|
protected |
ObjectIdValueProperty(ObjectIdValueProperty src,
String newName)
Deprecated.
|
| 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)
|
ObjectIdValueProperty |
withName(PropertyName newName)
Fluent factory method for constructing and returning a new instance
with specified property name.
|
ObjectIdValueProperty |
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, getPropertyIndex, getType, getValueDeserializer, getValueTypeDeserializer, getWrapperName, hasValueDeserializer, hasValueTypeDeserializer, hasViews, isRequired, setManagedReferenceName, setViews, toString, visibleInView, withName, withSimpleNameprotected final ObjectIdReader _objectIdReader
@Deprecated public ObjectIdValueProperty(ObjectIdReader objectIdReader)
public ObjectIdValueProperty(ObjectIdReader objectIdReader, PropertyMetadata metadata)
protected ObjectIdValueProperty(ObjectIdValueProperty src, JsonDeserializer<?> deser)
@Deprecated protected ObjectIdValueProperty(ObjectIdValueProperty src, PropertyName newName)
@Deprecated protected ObjectIdValueProperty(ObjectIdValueProperty src, String newName)
public ObjectIdValueProperty withName(PropertyName newName)
SettableBeanPropertywithName in class SettableBeanPropertynewName - Name to use for the new instance.public ObjectIdValueProperty 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 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.