
org.codehaus.jackson.map.deser.ContainerDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of barchart-wrap-jackson Show documentation
Show all versions of barchart-wrap-jackson Show documentation
bundle wrapper for json libs:
http://jackson.codehaus.org/
http://www.json.org/java/
https://github.com/FasterXML/jackson-datatype-json-org
The newest version!
package org.codehaus.jackson.map.deser;
import org.codehaus.jackson.map.JsonDeserializer;
import org.codehaus.jackson.type.JavaType;
/**
* Intermediate base deserializer class that adds more shared accessor
* so that other classes can access information about contained (value)
* types
*
* @since 1.6
*/
public abstract class ContainerDeserializer
extends StdDeserializer
{
protected ContainerDeserializer(Class> selfType)
{
super(selfType);
}
/*
/**********************************************************
/* Extended API
/**********************************************************
*/
/**
* Accessor for declared type of contained value elements; either exact
* type, or one of its supertypes.
*/
public abstract JavaType getContentType();
/**
* Accesor for deserializer use for deserializing content values.
*/
public abstract JsonDeserializer
© 2015 - 2025 Weber Informatics LLC | Privacy Policy