public abstract class SettableBeanProperty extends Object implements BeanProperty
Modifier and Type | Class and Description |
---|---|
static class |
SettableBeanProperty.FieldProperty
This concrete sub-class implements property that is set
directly assigning to a Field.
|
static class |
SettableBeanProperty.InnerClassProperty
This sub-class is used to handle special case of value being a
non-static inner class.
|
static class |
SettableBeanProperty.ManagedReferenceProperty
Wrapper property that is used to handle managed (forward) properties
(see [JACKSON-235] for more information).
|
static class |
SettableBeanProperty.MethodProperty
This concrete sub-class implements property that is set
using regular "setter" method.
|
protected static class |
SettableBeanProperty.NullProvider
To support [JACKSON-420] we need bit more indirection; this is used to produce
artificial failure for primitives that don't accept JSON null as value.
|
static class |
SettableBeanProperty.SetterlessProperty
This concrete sub-class implements Collection or Map property that is
indirectly by getting the property value and directly modifying it.
|
BeanProperty.Std
Modifier and Type | Field and Description |
---|---|
protected Annotations |
_contextAnnotations
Class that contains this property (either class that declares
the property or one of its subclasses), class that is
deserialized using deserializer that contains this property.
|
protected String |
_managedReferenceName
If property represents a managed (forward) reference
(see [JACKSON-235]), we will need name of reference for
later linking.
|
protected SettableBeanProperty.NullProvider |
_nullProvider
Object used to figure out value to be used when 'null' literal is encountered in JSON.
|
protected int |
_propertyIndex
Index of property (within all property of a bean); assigned
when all properties have been collected.
|
protected String |
_propName
Logical name of the property (often but not always derived
from the setter method name)
|
protected JavaType |
_type
Base type for property; may be a supertype of actual value.
|
protected JsonDeserializer<Object> |
_valueDeserializer
Deserializer used for handling property value.
|
protected TypeDeserializer |
_valueTypeDeserializer
If value will contain type information (to support
polymorphic handling), this is the type deserializer
used to handle type resolution.
|
Modifier | Constructor and Description |
---|---|
protected |
SettableBeanProperty(SettableBeanProperty src)
Basic copy-constructor for sub-classes to use.
|
protected |
SettableBeanProperty(SettableBeanProperty src,
JsonDeserializer<Object> deser)
Copy-with-deserializer-change constructor for sub-classes to use.
|
protected |
SettableBeanProperty(String propName,
JavaType type,
TypeDeserializer typeDeser,
Annotations contextAnnotations) |
Modifier and Type | Method and Description |
---|---|
protected IOException |
_throwAsIOE(Exception e) |
protected void |
_throwAsIOE(Exception e,
Object value)
Method that takes in exception of any type, and casts or wraps it
to an IOException or its subclass.
|
void |
assignIndex(int index)
Method used to assign index for property.
|
Object |
deserialize(JsonParser jp,
DeserializationContext ctxt)
This method is needed by some specialized bean deserializers,
and also called by some
deserializeAndSet(org.codehaus.jackson.JsonParser, org.codehaus.jackson.map.DeserializationContext, java.lang.Object) implementations. |
abstract void |
deserializeAndSet(JsonParser jp,
DeserializationContext ctxt,
Object instance)
Method called to deserialize appropriate value, given parser (and
context), and set it using appropriate mechanism.
|
abstract <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.
|
<A extends Annotation> |
getContextAnnotation(Class<A> acls)
Method for finding annotation associated with context of
this property; usually class in which member is declared
(or its subtype if processing subtype).
|
protected Class<?> |
getDeclaringClass() |
Object |
getInjectableValueId()
Accessor for id of injectable value, if this bean property supports
value injection.
|
String |
getManagedReferenceName() |
abstract AnnotatedMember |
getMember()
Method for accessing primary physical entity that represents the property;
annotated field, method or constructor property.
|
String |
getName()
Method to get logical name of the property
|
int |
getPropertyIndex()
Method for accessing unique index of this property; indexes are
assigned once all properties of a
BeanDeserializer have
been collected. |
String |
getPropertyName()
Deprecated.
Since 1.7, use
getName() instead. |
int |
getProperytIndex()
Deprecated.
Since 1.9: use
getPropertyIndex() instead |
JavaType |
getType()
Method to get declared type of the property.
|
JsonDeserializer<Object> |
getValueDeserializer() |
TypeDeserializer |
getValueTypeDeserializer() |
boolean |
hasValueDeserializer() |
boolean |
hasValueTypeDeserializer() |
abstract void |
set(Object instance,
Object value) |
void |
setManagedReferenceName(String n) |
void |
setValueDeserializer(JsonDeserializer<Object> deser)
Deprecated.
|
String |
toString() |
abstract SettableBeanProperty |
withValueDeserializer(JsonDeserializer<Object> deser) |
protected final String _propName
protected final JavaType _type
protected final Annotations _contextAnnotations
protected JsonDeserializer<Object> _valueDeserializer
protected TypeDeserializer _valueTypeDeserializer
protected SettableBeanProperty.NullProvider _nullProvider
protected String _managedReferenceName
protected int _propertyIndex
protected SettableBeanProperty(String propName, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations)
protected SettableBeanProperty(SettableBeanProperty src)
protected SettableBeanProperty(SettableBeanProperty src, JsonDeserializer<Object> deser)
@Deprecated public void setValueDeserializer(JsonDeserializer<Object> deser)
public abstract SettableBeanProperty withValueDeserializer(JsonDeserializer<Object> deser)
public void setManagedReferenceName(String n)
public void assignIndex(int index)
public final String getName()
BeanProperty
getName
in interface BeanProperty
getName
in interface Named
public JavaType getType()
BeanProperty
getType
in interface BeanProperty
public abstract <A extends Annotation> A getAnnotation(Class<A> acls)
BeanProperty
getAnnotation
in interface BeanProperty
public abstract AnnotatedMember getMember()
BeanProperty
getMember
in interface BeanProperty
public <A extends Annotation> A getContextAnnotation(Class<A> acls)
BeanProperty
getContextAnnotation
in interface BeanProperty
protected final Class<?> getDeclaringClass()
@Deprecated public String getPropertyName()
getName()
instead.public String getManagedReferenceName()
public boolean hasValueDeserializer()
public boolean hasValueTypeDeserializer()
public JsonDeserializer<Object> getValueDeserializer()
public TypeDeserializer getValueTypeDeserializer()
public int getPropertyIndex()
BeanDeserializer
have
been collected.@Deprecated public int getProperytIndex()
getPropertyIndex()
insteadpublic Object getInjectableValueId()
public abstract void deserializeAndSet(JsonParser jp, DeserializationContext ctxt, Object instance) throws IOException, JsonProcessingException
IOException
JsonProcessingException
public abstract void set(Object instance, Object value) throws IOException
IOException
public final Object deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException
deserializeAndSet(org.codehaus.jackson.JsonParser, org.codehaus.jackson.map.DeserializationContext, java.lang.Object)
implementations.
Pre-condition is that passed parser must point to the first token that should be consumed to produce the value (the only value for scalars, multiple for Objects and Arrays).
IOException
JsonProcessingException
protected void _throwAsIOE(Exception e, Object value) throws IOException
IOException
protected IOException _throwAsIOE(Exception e) throws IOException
IOException