public class CreatorProperty extends SettableBeanProperty
Note on injectable values (1.9): unlike with other mutators, where deserializer and injecting are separate, here we deal the two as related things. This is necessary to add proper priority, as well as to simplify coordination.
Note that this class was moved in Jackson 1.9 from being a static sub-class of "org.codehaus.jackson.map.deser.SettableBeanProperty" into separate class, to make it easier to use it for custom creators.
SettableBeanProperty.FieldProperty, SettableBeanProperty.InnerClassProperty, SettableBeanProperty.ManagedReferenceProperty, SettableBeanProperty.MethodProperty, SettableBeanProperty.NullProvider, SettableBeanProperty.SetterlessProperty
BeanProperty.Std
限定符和类型 | 字段和说明 |
---|---|
protected AnnotatedParameter |
_annotated
Placeholder that represents constructor parameter, when it is created
from actual constructor.
|
protected Object |
_injectableValueId
Id of value to inject, if value injection should be used for this parameter
(in addition to, or instead of, regular deserialization).
|
_contextAnnotations, _managedReferenceName, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer
限定符 | 构造器和说明 |
---|---|
protected |
CreatorProperty(CreatorProperty src,
JsonDeserializer<Object> deser) |
|
CreatorProperty(String name,
JavaType type,
TypeDeserializer typeDeser,
Annotations contextAnnotations,
AnnotatedParameter param,
int index,
Object injectableValueId) |
限定符和类型 | 方法和说明 |
---|---|
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 |
findInjectableValue(DeserializationContext context,
Object beanInstance)
Method that can be called to locate value to be injected for this
property, if it is configured for this.
|
<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.
|
Object |
getInjectableValueId()
Accessor for id of injectable value, if this bean property supports
value injection.
|
AnnotatedMember |
getMember()
Method for accessing primary physical entity that represents the property;
annotated field, method or constructor property.
|
void |
inject(DeserializationContext context,
Object beanInstance)
Method to find value to inject, and inject it to this property.
|
void |
set(Object instance,
Object value) |
CreatorProperty |
withValueDeserializer(JsonDeserializer<Object> deser) |
_throwAsIOE, _throwAsIOE, assignIndex, deserialize, getContextAnnotation, getDeclaringClass, getManagedReferenceName, getName, getPropertyIndex, getPropertyName, getProperytIndex, getType, getValueDeserializer, getValueTypeDeserializer, hasValueDeserializer, hasValueTypeDeserializer, setManagedReferenceName, setValueDeserializer, toString
protected final AnnotatedParameter _annotated
protected final Object _injectableValueId
public CreatorProperty(String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedParameter param, int index, Object injectableValueId)
name
- Name of the logical propertytype
- Type of the property, used to find deserializertypeDeser
- Type deserializer to use for handling polymorphic type
information, if one is neededcontextAnnotations
- Contextual annotations (usually by class that
declares creator [constructor, factory method] that includes
this property)param
- Representation of property, constructor or factory
method parameter; used for accessing annotations of the propertyprotected CreatorProperty(CreatorProperty src, JsonDeserializer<Object> deser)
public CreatorProperty withValueDeserializer(JsonDeserializer<Object> deser)
public Object findInjectableValue(DeserializationContext context, Object beanInstance)
public void inject(DeserializationContext context, Object beanInstance) throws IOException
IOException
public <A extends Annotation> A getAnnotation(Class<A> acls)
BeanProperty
getAnnotation
在接口中 BeanProperty
getAnnotation
在类中 SettableBeanProperty
public AnnotatedMember getMember()
BeanProperty
getMember
在接口中 BeanProperty
getMember
在类中 SettableBeanProperty
public void deserializeAndSet(JsonParser jp, DeserializationContext ctxt, Object instance) throws IOException, JsonProcessingException
SettableBeanProperty
public void set(Object instance, Object value) throws IOException
set
在类中 SettableBeanProperty
IOException
public Object getInjectableValueId()
SettableBeanProperty