vote up 7 vote down star
1

Just a quick question regarding enums.

Say I have an enum which is just

public enum Blah {
  A, B , C, D
}

and i would like to find the enum value of a string of for example "A" which would be Blah.A - How would it be possible to do this?

Is the Enum.ValueOf() the method I need? If so how would I use this?

flag

55% accept rate

4 Answers

vote up 18 vote down check

Yes, Blah.valueOf("A") will give you Blah.A.

The static methods valueOf() and values() are created at compile time and do not appear in source code. They do appear in Javadoc, though; for example, Dialog.ModalityType shows both methods.

link|flag
vote up 4 vote down

you should also be careful with your case. let me explain: doing Blah.valueOf("A") works but Blah.valueOf("a") will not work. then again Blah.valueOf("a".toUpperCase()) would work :p

link|flag
vote up 1 vote down

Using Blah.valueOf(string) is best but you can use Enum.valueOf(Blah.class, string) as well.

link|flag
Um, didn't you notice you had already posted essentially the same answer... stackoverflow.com/questions/604424/… – Jonik May 9 at 17:47
Um, no let me fix that. – Peter Lawrey May 10 at 7:14
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.