Top Fields Constructors Methods
com.fasterxml.jackson.module.afterburner.deser

public final Class SettableBooleanFieldProperty

extends OptimizedSettableBeanProperty<SettableBooleanFieldProperty>
Class Inheritance
Imports
java.io.IOException, com.fasterxml.jackson.core.*, com.fasterxml.jackson.databind.*, com.fasterxml.jackson.databind.deser.SettableBeanProperty

Field Summary

Modifier and TypeField and Description
private static final long
Inherited from com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty:
_optimizedIndex_propertyMutator_skipNulls

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public void
deserializeAndSet(JsonParser p, DeserializationContext ctxt, Object bean)

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.deserializeAndSet.

Method called to deserialize appropriate value, given parser (and context), and set it using appropriate mechanism.

public Object
deserializeSetAndReturn(JsonParser p, DeserializationContext ctxt, Object instance)

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.deserializeSetAndReturn.

Alternative to deserializeAndSet that returns either return value of setter method called (if one is), or null to indicate that no return value is available.

public void
set(Object bean, Object value)

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.set.

Method called to assign given value to this property, on specified Object.

protected SettableBeanProperty
withDelegate(SettableBeanProperty del)

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.withDelegate.

Method sub-classes must implement, to construct a new instance with given delegate.

public SettableBeanProperty
Inherited from com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty:
_isDefaultDeserializer_reportProblemgetOptimizedIndexsetAndReturnwithValueDeserializer

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.serialVersionUID.

Constructor Detail

SettableBooleanFieldPropertyback to summary
public SettableBooleanFieldProperty(SettableBeanProperty src, BeanPropertyMutator mutator, int index)

Method Detail

deserializeAndSetback to summary
public void deserializeAndSet(JsonParser p, DeserializationContext ctxt, Object bean) throws IOException

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.deserializeAndSet.

Doc from com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserializeAndSet.

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).

Annotations
@Override
deserializeSetAndReturnback to summary
public Object deserializeSetAndReturn(JsonParser p, DeserializationContext ctxt, Object instance) throws IOException

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.deserializeSetAndReturn.

Doc from com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserializeSetAndReturn.

Alternative to deserializeAndSet that returns either return value of setter method called (if one is), or null to indicate that no return value is available. Mostly used to support Builder style deserialization.

Annotations
@Override
setback to summary
public void set(Object bean, Object value) throws IOException

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.set.

Doc from com.fasterxml.jackson.databind.deser.SettableBeanProperty.set.

Method called to assign given value to this property, on specified Object.

Note

this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.

Annotations
@Override
withDelegateback to summary
protected SettableBeanProperty withDelegate(SettableBeanProperty del)

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.withDelegate.

Doc from com.fasterxml.jackson.databind.deser.SettableBeanProperty.Delegating.withDelegate.

Method sub-classes must implement, to construct a new instance with given delegate.

Annotations
@Override
withMutatorback to summary
public SettableBeanProperty withMutator(BeanPropertyMutator mut)

Implements abstract com.fasterxml.jackson.module.afterburner.deser.OptimizedSettableBeanProperty.withMutator.

Annotations
@Override