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, _objectIdInfo, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer, _viewMatcher, _wrapperName, MISSING_VALUE_DESERIALIZER_metadata, _propertyFormatEMPTY_FORMAT, EMPTY_INCLUDE| Modifier | Constructor and Description | 
|---|---|
|   | ObjectIdValueProperty(ObjectIdReader objectIdReader,
                     PropertyMetadata metadata) | 
| protected  | ObjectIdValueProperty(ObjectIdValueProperty src,
                     JsonDeserializer<?> deser) | 
| protected  | ObjectIdValueProperty(ObjectIdValueProperty src,
                     PropertyName newName) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | deserializeAndSet(JsonParser p,
                 DeserializationContext ctxt,
                 Object instance)Method called to deserialize appropriate value, given parser (and
 context), and set it using appropriate mechanism. | 
| Object | deserializeSetAndReturn(JsonParser p,
                       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, _throwAsIOE, _throwAsIOE, assignIndex, depositSchemaProperty, deserialize, fixAccess, getContextAnnotation, getCreatorIndex, getDeclaringClass, getFullName, getInjectableValueId, getManagedReferenceName, getName, getObjectIdInfo, getPropertyIndex, getType, getValueDeserializer, getValueTypeDeserializer, getWrapperName, hasValueDeserializer, hasValueTypeDeserializer, hasViews, setManagedReferenceName, setObjectIdInfo, setViews, toString, visibleInView, withName, withSimpleNamefindFormatOverrides, findPropertyFormat, findPropertyInclusion, getMetadata, isRequired, isVirtualprotected final ObjectIdReader _objectIdReader
public ObjectIdValueProperty(ObjectIdReader objectIdReader, PropertyMetadata metadata)
protected ObjectIdValueProperty(ObjectIdValueProperty src, JsonDeserializer<?> deser)
protected ObjectIdValueProperty(ObjectIdValueProperty src, PropertyName 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)
BeanProperty
 Note that this method should only be called for custom annotations;
 access to standard Jackson annotations (or ones supported by
 alternate AnnotationIntrospectors) should be accessed
 through AnnotationIntrospector.
getAnnotation in interface BeanPropertygetAnnotation in class SettableBeanPropertypublic AnnotatedMember getMember()
BeanPropertygetMember in interface BeanPropertygetMember in class SettableBeanPropertypublic void deserializeAndSet(JsonParser p, DeserializationContext ctxt, Object instance) throws IOException
SettableBeanPropertydeserializeAndSet in class SettableBeanPropertyIOExceptionpublic Object deserializeSetAndReturn(JsonParser p, DeserializationContext ctxt, Object instance) throws IOException
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 SettableBeanPropertyIOExceptionpublic 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 © 2017 JBoss by Red Hat. All rights reserved.