Here's a nifty utility I use:
/**
* A common method for all enums since they can't have another base class
* @param <T> Enum type
* @param c enum type. All enums must be all caps.
* @param string case insensitive
* @return corresponding enum, or null
*/
public static <T extends Enum<T>> T getEnumFromString(Class<T> c, String string)
{
if( c != null && string != null )
{
try
{
return Enum.valueOf(c, string.trim().toUpperCase());
}
catch(IllegalArgumentException ex)
{
}
}
return null;
}
Then in my enum class I usually have this to save some typing:
public static MyEnum fromString(String name)
{
return getEnumFromString(MyEnum.class, name);
}
If your enums are not all caps, just change the Enum.valueOf line.
Too bad I can't use T.class for Enum.valueOf as T is erased.