Uses of Class
org.codehaus.jackson.map.deser.SettableBeanProperty

Packages that use SettableBeanProperty
org.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding. 
 

Uses of SettableBeanProperty in org.codehaus.jackson.map.deser
 

Subclasses of SettableBeanProperty in org.codehaus.jackson.map.deser
static class SettableBeanProperty.CreatorProperty
          This concrete sub-class implements property that is passed via Creator (constructor or static factory method).
static class SettableBeanProperty.FieldProperty
          This concrete sub-class implements property that is set directly assigning to a Field.
static class SettableBeanProperty.MethodProperty
          This concrete sub-class implements property that is set using regular "setter" method.
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.
 

Fields in org.codehaus.jackson.map.deser with type parameters of type SettableBeanProperty
protected  HashMap<String,SettableBeanProperty> BeanDeserializer._props
          Things set via setters (modifiers) are included in this Map.
 

Methods in org.codehaus.jackson.map.deser that return SettableBeanProperty
protected  SettableBeanProperty BasicDeserializerFactory.constructCreatorProperty(DeserializationConfig config, BasicBeanDescription beanDesc, String name, int index, AnnotatedParameter param)
          Method that will construct a property object that represents a logical property passed via Creator (constructor or static factory method)
protected  SettableBeanProperty BeanDeserializerFactory.constructSettableProperty(DeserializationConfig config, BasicBeanDescription beanDesc, String name, AnnotatedField field)
           
protected  SettableBeanProperty BeanDeserializerFactory.constructSettableProperty(DeserializationConfig config, BasicBeanDescription beanDesc, String name, AnnotatedMethod setter)
          Method that will construct a regular bean property setter using the given setter method.
protected  SettableBeanProperty BeanDeserializerFactory.constructSetterlessProperty(DeserializationConfig config, BasicBeanDescription beanDesc, String name, AnnotatedMethod getter)
          Method that will construct a regular bean property setter using the given setter method.
 SettableBeanProperty BeanDeserializer.removeProperty(String name)
           
 

Methods in org.codehaus.jackson.map.deser with parameters of type SettableBeanProperty
 void BeanDeserializer.addProperty(SettableBeanProperty prop)
          Method to add a property setter.
 void CreatorContainer.addPropertyConstructor(AnnotatedConstructor ctor, SettableBeanProperty[] properties)
           
 void CreatorContainer.addPropertyFactory(AnnotatedMethod factory, SettableBeanProperty[] properties)
           
 void PropertyValueBuffer.bufferProperty(SettableBeanProperty prop, Object value)