ValuedEnum defines an enumeration which is bounded to a value, you may implements this interface when you defines such kind of enumeration, that you can use EnumUtils to simplify parse and valueOf operation. @author yutianbao
| 23 | * @author yutianbao |
| 24 | */ |
| 25 | public interface ValuedEnum<T> { |
| 26 | T value(); |
| 27 | } |
no outgoing calls
no test coverage detected