com.fitbur.fasterxml.jackson.databind.deser.impl.UnwrappedPropertyHandler Maven / Gradle / Ivy
package com.fitbur.fasterxml.jackson.databind.com.fitburser.impl;
import java.io.IOException;
import java.util.*;
import com.fitbur.fasterxml.jackson.core.*;
import com.fitbur.fasterxml.jackson.databind.DeserializationContext;
import com.fitbur.fasterxml.jackson.databind.JsonDeserializer;
import com.fitbur.fasterxml.jackson.databind.com.fitburser.SettableBeanProperty;
import com.fitbur.fasterxml.jackson.databind.util.NameTransformer;
import com.fitbur.fasterxml.jackson.databind.util.TokenBuffer;
/**
* Object that is responsible for handling acrobatics related to
* com.fitburserializing "unwrapped" values; sets of properties that are
* embedded (inlined) as properties of parent JSON object.
*/
public class UnwrappedPropertyHandler
{
protected final ArrayList _properties = new ArrayList();
public UnwrappedPropertyHandler() { }
public void addProperty(SettableBeanProperty property) {
_properties.add(property);
}
public void renameAll(NameTransformer transformer)
{
ArrayList oldProps = new ArrayList(_properties);
Iterator it = oldProps.iterator();
_properties.clear();
while (it.hasNext()) {
SettableBeanProperty prop = it.next();
String newName = transformer.transform(prop.getName());
prop = prop.withName(newName);
JsonDeserializer> com.fitburser = prop.getValueDeserializer();
if (com.fitburser != null) {
@SuppressWarnings("unchecked")
JsonDeserializer
© 2015 - 2024 Weber Informatics LLC | Privacy Policy