
com.caucho.v5.json.ser.EnumSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of baratine Show documentation
Show all versions of baratine Show documentation
A reactive Java web server.
package com.caucho.v5.json.ser;
import com.caucho.v5.json.io.JsonWriter;
public class EnumSerializer extends JsonSerializerBase>
{
static final SerializerJson> SER = new EnumSerializer();
/*
@Override
public void write(JsonWriter out, String name, Enum> value)
{
out.write(name, value.name());
}
*/
@Override
public void write(JsonWriter out, Enum> value)
{
out.write(value.name());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy