com.jdroid.javaweb.guava.function.EnumNameFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-webapp Show documentation
Show all versions of jdroid-java-webapp Show documentation
Jdroid library for Java Web apps
The newest version!
package com.jdroid.javaweb.guava.function;
import java.io.Serializable;
import com.google.common.base.Function;
/**
* Transforms an enum in its name
*
* @param The Enum type
*
*/
public class EnumNameFunction> implements Function, Serializable {
/**
* @see com.google.common.base.Function#apply(java.lang.Object)
*/
@Override
public String apply(E from) {
return from.name();
}
}