Package org.codehaus.jackson.map.deser
Class SettableBeanProperty.SetterlessProperty
- java.lang.Object
-
- org.codehaus.jackson.map.deser.SettableBeanProperty
-
- org.codehaus.jackson.map.deser.SettableBeanProperty.SetterlessProperty
-
- All Implemented Interfaces:
BeanProperty
,Named
- Enclosing class:
- SettableBeanProperty
public static final class SettableBeanProperty.SetterlessProperty extends SettableBeanProperty
This concrete sub-class implements Collection or Map property that is indirectly by getting the property value and directly modifying it.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.codehaus.jackson.map.deser.SettableBeanProperty
SettableBeanProperty.FieldProperty, SettableBeanProperty.InnerClassProperty, SettableBeanProperty.ManagedReferenceProperty, SettableBeanProperty.MethodProperty, SettableBeanProperty.NullProvider, SettableBeanProperty.SetterlessProperty
-
Nested classes/interfaces inherited from interface org.codehaus.jackson.map.BeanProperty
BeanProperty.Std
-
-
Field Summary
Fields Modifier and Type Field Description protected AnnotatedMethod
_annotated
protected java.lang.reflect.Method
_getter
Get method for accessing property value used to access property (of Collection or Map type) to modify.-
Fields inherited from class org.codehaus.jackson.map.deser.SettableBeanProperty
_contextAnnotations, _managedReferenceName, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer
-
-
Constructor Summary
Constructors Modifier Constructor Description SetterlessProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method)
protected
SetterlessProperty(SettableBeanProperty.SetterlessProperty src, JsonDeserializer<java.lang.Object> deser)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deserializeAndSet(JsonParser jp, DeserializationContext ctxt, java.lang.Object instance)
Method called to deserialize appropriate value, given parser (and context), and set it using appropriate mechanism.<A extends java.lang.annotation.Annotation>
AgetAnnotation(java.lang.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(java.lang.Object instance, java.lang.Object value)
SettableBeanProperty.SetterlessProperty
withValueDeserializer(JsonDeserializer<java.lang.Object> deser)
-
Methods inherited from class org.codehaus.jackson.map.deser.SettableBeanProperty
_throwAsIOE, _throwAsIOE, assignIndex, deserialize, getContextAnnotation, getDeclaringClass, getInjectableValueId, getManagedReferenceName, getName, getPropertyIndex, getPropertyName, getProperytIndex, getType, getValueDeserializer, getValueTypeDeserializer, hasValueDeserializer, hasValueTypeDeserializer, setManagedReferenceName, setValueDeserializer, toString
-
-
-
-
Field Detail
-
_annotated
protected final AnnotatedMethod _annotated
-
_getter
protected final java.lang.reflect.Method _getter
Get method for accessing property value used to access property (of Collection or Map type) to modify.
-
-
Constructor Detail
-
SetterlessProperty
public SetterlessProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method)
-
SetterlessProperty
protected SetterlessProperty(SettableBeanProperty.SetterlessProperty src, JsonDeserializer<java.lang.Object> deser)
-
-
Method Detail
-
withValueDeserializer
public SettableBeanProperty.SetterlessProperty withValueDeserializer(JsonDeserializer<java.lang.Object> deser)
- Specified by:
withValueDeserializer
in classSettableBeanProperty
-
getAnnotation
public <A extends java.lang.annotation.Annotation> A getAnnotation(java.lang.Class<A> acls)
Description copied from interface:BeanProperty
Method for finding annotation associated with this property; meaning annotation associated with one of entities used to access property.- Specified by:
getAnnotation
in interfaceBeanProperty
- Specified by:
getAnnotation
in classSettableBeanProperty
-
getMember
public AnnotatedMember getMember()
Description copied from interface:BeanProperty
Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.- Specified by:
getMember
in interfaceBeanProperty
- Specified by:
getMember
in classSettableBeanProperty
-
deserializeAndSet
public final void deserializeAndSet(JsonParser jp, DeserializationContext ctxt, java.lang.Object instance) throws java.io.IOException, JsonProcessingException
Description copied from class:SettableBeanProperty
Method called to deserialize appropriate value, given parser (and context), and set it using appropriate mechanism. 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).- Specified by:
deserializeAndSet
in classSettableBeanProperty
- Throws:
java.io.IOException
JsonProcessingException
-
set
public final void set(java.lang.Object instance, java.lang.Object value) throws java.io.IOException
- Specified by:
set
in classSettableBeanProperty
- Throws:
java.io.IOException
-
-