org.codehaus.jackson.map.ser.EnumSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-mapper-asl Show documentation
Show all versions of jackson-mapper-asl Show documentation
Data Mapper package is a high-performance data binding package
built on Jackson JSON processor
The newest version!
package org.codehaus.jackson.map.ser;
import org.codehaus.jackson.map.annotate.JacksonStdImpl;
import org.codehaus.jackson.map.util.EnumValues;
/**
* @deprecated Since 1.9 use {@link org.codehaus.jackson.map.ser.std.EnumSerializer}
*/
@Deprecated
@JacksonStdImpl
public class EnumSerializer
extends org.codehaus.jackson.map.ser.std.EnumSerializer
{
public EnumSerializer(EnumValues v) {
super(v);
}
}