org.codehaus.jackson.map.ser.MapSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
package org.codehaus.jackson.map.ser;
import java.util.HashSet;
import org.codehaus.jackson.map.BeanProperty;
import org.codehaus.jackson.map.JsonSerializer;
import org.codehaus.jackson.map.TypeSerializer;
import org.codehaus.jackson.map.annotate.JacksonStdImpl;
import org.codehaus.jackson.type.JavaType;
/**
* @deprecated Since 1.9 use {@link org.codehaus.jackson.map.ser.std.MapSerializer}
*/
@Deprecated
@JacksonStdImpl
public class MapSerializer
extends org.codehaus.jackson.map.ser.std.MapSerializer
{
protected MapSerializer() {
this((HashSet)null, null, null, false, null, null, null, null);
}
/**
* Legacy constructor (as of 1.7)
*
* @deprecated Use variant that takes Key type and property information
*/
@Deprecated
protected MapSerializer(HashSet ignoredEntries,
JavaType valueType, boolean valueTypeIsStatic,
TypeSerializer vts)
{
super(ignoredEntries, UNSPECIFIED_TYPE, valueType, valueTypeIsStatic, vts, null, null, null);
}
/**
* Legacy constructor (as of 1.8)
*
* @deprecated As of 1.8, use version that takes valueSerializer
*/
@Deprecated
protected MapSerializer(HashSet ignoredEntries,
JavaType keyType, JavaType valueType, boolean valueTypeIsStatic,
TypeSerializer vts, JsonSerializer