package com.github.wwadge.hbnpojogen.persistence.impl; /** * Utility class designed to allow dynamic fidding and manipulation of Enum * instances which hold a string value. * * @author unknown */ public interface StringValuedEnum { /** * Current string value stored in the enum. * * @return string value. */ String getValue(); }