Example usage for com.fasterxml.jackson.databind.deser.std StdDeserializer subclass-usage

List of usage examples for com.fasterxml.jackson.databind.deser.std StdDeserializer subclass-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.deser.std StdDeserializer subclass-usage.

Usage

From source file org.apache.streams.jackson.StreamsDateTimeDeserializer.java

/**
 * StreamsDateTimeDeserializer is a supporting class for
 * @see {@link org.apache.streams.jackson.StreamsJacksonMapper}
 *
 * Converting date-time strings other than RFC3339 to joda DateTime objects requires
 * additional formats to be provided when instantiating StreamsJacksonMapper.

From source file nl.talsmasoftware.enumerables.support.json.jackson2.EnumerableDeserializer.java

/**
 * Deserializer for Jackson-2 to deserialize Enumerable Objects from JSON with.
 * This deserializer can read {@link Enumerable#getValue() values} from both plain-String representations and
 * JSON Object representations.
 * Therefore, the {@link nl.talsmasoftware.enumerables.support.json.SerializationMethod serialization method} is not
 * relevant for this deserializer.

From source file org.intelligentsia.dowsers.core.serializers.jackson.LocaleJsonDeserializer.java

/**
 * LocaleJsonDeserializer. Default locale is {@link Locale#ENGLISH}.
 * 
 * @author <a href="mailto:jguibert@intelligents-ia.com" >Jerome Guibert</a>
 */
public class LocaleJsonDeserializer extends StdDeserializer<Locale> {

From source file org.apache.ode.jacob.soup.jackson.ChannelProxyDeserializer.java

/**
 * Jackson deserializer for Channels.
 * Creates ChannelProxy instances based on channel id and channel type.
 * 
 * @author Tammo van Lessen
 *

From source file org.intelligentsia.dowsers.core.serializers.jackson.ClassInformationDeserializer.java

/**
 * 
 * ClassInformationDeserializer.
 * 
 * @author <a href="mailto:jguibert@intelligents-ia.com" >Jerome Guibert</a>
 */

From source file org.thingsplode.synapse.serializers.jackson.adapters.ParameterWrapperDeserializer.java

/**
 *
 * @author Csaba Tamas
 */
public class ParameterWrapperDeserializer extends StdDeserializer<ParameterWrapper> {

From source file org.comicwiki.serializers.YearDeserializer.java

public class YearDeserializer extends StdDeserializer<Date> {

    protected YearDeserializer() {
        super(Date.class);
    }

From source file org.apache.ode.jacob.soup.jackson.MessageDeserializer.java

/**
 * Jackson deserializer for Message objects.
 * 
 * @author Tammo van Lessen
 *
 */

From source file org.hyperledger.dropwizard.hocon.HoconDeserializer.java

public abstract class HoconDeserializer<T> extends StdDeserializer<T> {

    public HoconDeserializer(Class<T> vc) {
        super(vc);
    }

From source file org.commonjava.maven.atlas.graph.jackson.ProjectRelationshipDeserializer.java

/**
 * Created by jdcasey on 8/26/15.
 */
@SuppressWarnings({ "rawtypes", "unchecked" })
public final class ProjectRelationshipDeserializer<T extends ProjectRelationship> extends StdDeserializer<T> {
    private static final long serialVersionUID = 1L;