Package org.codehaus.jackson.map.deser
Class SettableBeanProperty.FieldProperty
- java.lang.Object
-
- org.codehaus.jackson.map.deser.SettableBeanProperty
-
- org.codehaus.jackson.map.deser.SettableBeanProperty.FieldProperty
-
- All Implemented Interfaces:
BeanProperty,Named
- Enclosing class:
- SettableBeanProperty
public static final class SettableBeanProperty.FieldProperty extends SettableBeanProperty
This concrete sub-class implements property that is set directly assigning to a Field.
-
-
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 AnnotatedField_annotatedprotected java.lang.reflect.Field_fieldActual field to set when deserializing this property.-
Fields inherited from class org.codehaus.jackson.map.deser.SettableBeanProperty
_contextAnnotations, _managedReferenceName, _nullProvider, _propertyIndex, _propName, _type, _valueDeserializer, _valueTypeDeserializer
-
-
Constructor Summary
Constructors Modifier Constructor Description FieldProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedField field)protectedFieldProperty(SettableBeanProperty.FieldProperty src, JsonDeserializer<java.lang.Object> deser)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeserializeAndSet(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.AnnotatedMembergetMember()Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.voidset(java.lang.Object instance, java.lang.Object value)SettableBeanProperty.FieldPropertywithValueDeserializer(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 AnnotatedField _annotated
-
_field
protected final java.lang.reflect.Field _field
Actual field to set when deserializing this property.
-
-
Constructor Detail
-
FieldProperty
public FieldProperty(java.lang.String name, JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedField field)
-
FieldProperty
protected FieldProperty(SettableBeanProperty.FieldProperty src, JsonDeserializer<java.lang.Object> deser)
-
-
Method Detail
-
withValueDeserializer
public SettableBeanProperty.FieldProperty withValueDeserializer(JsonDeserializer<java.lang.Object> deser)
- Specified by:
withValueDeserializerin classSettableBeanProperty
-
getAnnotation
public <A extends java.lang.annotation.Annotation> A getAnnotation(java.lang.Class<A> acls)
Description copied from interface:BeanPropertyMethod for finding annotation associated with this property; meaning annotation associated with one of entities used to access property.- Specified by:
getAnnotationin interfaceBeanProperty- Specified by:
getAnnotationin classSettableBeanProperty
-
getMember
public AnnotatedMember getMember()
Description copied from interface:BeanPropertyMethod for accessing primary physical entity that represents the property; annotated field, method or constructor property.- Specified by:
getMemberin interfaceBeanProperty- Specified by:
getMemberin classSettableBeanProperty
-
deserializeAndSet
public void deserializeAndSet(JsonParser jp, DeserializationContext ctxt, java.lang.Object instance) throws java.io.IOException, JsonProcessingException
Description copied from class:SettableBeanPropertyMethod 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:
deserializeAndSetin classSettableBeanProperty- Throws:
java.io.IOExceptionJsonProcessingException
-
set
public final void set(java.lang.Object instance, java.lang.Object value) throws java.io.IOException- Specified by:
setin classSettableBeanProperty- Throws:
java.io.IOException
-
-