main.java.ca.oson.json.function.Json2EnumFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oson Show documentation
Show all versions of oson Show documentation
Java object to Json converter, to serialize Java object to Json string, and deserialize Json string to Java Object
package ca.oson.json.function;
@FunctionalInterface
public interface Json2EnumFunction extends OsonFunction {
public Enum apply(String t);
}