org.codehaus.jackson.map.deser
Class SettableBeanProperty.CreatorProperty
java.lang.Object
org.codehaus.jackson.map.deser.SettableBeanProperty
org.codehaus.jackson.map.deser.SettableBeanProperty.CreatorProperty
- Enclosing class:
- SettableBeanProperty
public static final class SettableBeanProperty.CreatorProperty
- extends SettableBeanProperty
This concrete sub-class implements property that is passed
via Creator (constructor or static factory method).
SettableBeanProperty.CreatorProperty
public SettableBeanProperty.CreatorProperty(String propName,
JavaType type,
TypeDeserializer typeDeser,
Class<?> declaringClass,
int index)
getCreatorIndex
public int getCreatorIndex()
- Method to use for accessing index of the property (related to
other properties in the same context); currently only applicable
to "Creator properties".
Base implementation returns -1 to indicate that no index exists
for the property.
- Overrides:
getCreatorIndex
in class SettableBeanProperty
getDeclaringClass
protected Class<?> getDeclaringClass()
- Specified by:
getDeclaringClass
in class SettableBeanProperty
deserializeAndSet
public void deserializeAndSet(JsonParser jp,
DeserializationContext ctxt,
Object instance)
throws 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 class SettableBeanProperty
- Throws:
IOException
JsonProcessingException
set
public void set(Object instance,
Object value)
throws IOException
- Specified by:
set
in class SettableBeanProperty
- Throws:
IOException