up vote 114 down vote favorite
25
share [g+] share [fb]

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?

link|improve this question

59% accept rate
feedback

9 Answers

up vote 156 down vote accepted

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|improve this answer
feedback

Another solution if the text is not the same to the enumeration value:

public enum Blah {
  A("text1"),
  B("text2"),
  C("text3"),
  D("text4");

  private String text;

  Blah(String text) {
    this.text = text;
  }

  public String getText() {
    return this.text;
  }

  public static Blah fromString(String text) {
    if (text != null) {
      for (Blah b : Blah.values()) {
        if (text.equalsIgnoreCase(b.text)) {
          return b;
        }
      }
    }
    return null;
  }
}
link|improve this answer
36  
throw new IllegalArgumentException("No constant with text " + text + " found") would be better than return null. – whiskeysierra Jul 31 '10 at 10:28
1  
@Willi He still needs to return a value, even if he throws an exception. – stevebot Apr 18 '11 at 23:13
16  
@stevebot no he doesn't... – Dolbz May 16 '11 at 14:14
1  
@Sangdol Could you enlight us why returning null is better? – whiskeysierra Sep 29 '11 at 15:04
2  
@whiskeysierra The last answer's comment in my link is "That's testing a non-exceptional situation via exceptions - using them for flow control in a normal, non-error condition. That's a very poor use of exceptions IMO, and one which can have a significant performance impact. Exceptions are fine in terms of performance normally, because they shouldn't happen - but when you use them for non-error conditions, then code which looks like it should run quickly can get bogged down". I'm not totally sure about usage of exceptions, but you know, that is Jon Skeet.:) – Sangdol Sep 29 '11 at 16:51
show 3 more comments
feedback

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|improve this answer
27  
That empty catch block really drives me nuts, sorry. – whiskeysierra Jul 31 '10 at 10:14
2  
What is it with you Java folks trying to kill exceptions? – Lazlo Bonin Sep 4 '11 at 23:29
@LazloBonin: Exceptions are for exceptional conditions, not for control flow. Get yourself a copy of Effective Java. – Martin Schröder Nov 15 '11 at 17:09
1  
If the Java API you want to use throws an exception and you don't want your code to throw one, you can either swallow the exception like this, or re-write the logic from scratch so no exception is thrown in the first place. Swallowing the exception is often the lesser evil. – Nate C-K Nov 30 '11 at 19:26
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
Um, didn't you notice you had already posted essentially the same answer... stackoverflow.com/questions/604424/… – Jonik May 9 '09 at 17:47
Um, no let me fix that. – Peter Lawrey May 10 '09 at 7:14
feedback
  public static  MyEnum getFromValue(String value){
   MyEnum resp = null;
   MyEnum nodes[] =  values();
   for(int i=0;i<nodes.length;i++){
        if(nodes[i].value.equals(value)){
            resp =  nodes[i];
            break;
        }
   }
   return resp;
link|improve this answer
take a look at this link for guides on answering and asking questions on stackoverflow.com: stackoverflow.com/faq – bakoyaro Nov 9 '11 at 18:15
That's more or less the same as JoséMi's answer – Rup Nov 14 '11 at 12:40
feedback

Another way of doing this by using implicit static method name() of Enum. name will return the exact string used to create that enum which can be used to check against provided string:

public enum Blah {

    A, B, C, D;

    public static Blah getEnum(String s){
        if(A.name().equals(s)){
            return A;
        }else if(B.name().equals(s)){
            return B;
        }else if(C.name().equals(s)){
            return C;
        }else if (D.name().equals(s)){
            return D;
        }
        throw new IllegalArgumentException("No Enum specified for this string");
    }
}

Testing:

System.out.println(Blah.getEnum("B").name());

//it will print B  B

inspiration: 10 Examples of Enum in Java

link|improve this answer
feedback

Here's a method that can do it for any Enum, and is case insensitive. Does anyone know how to get rid of the warning in the return statement?

/** 
 * Finds the value of the given enumeration by name, case-insensitive. 
 * Throws an IllegalArgumentException if no match is found.  
 **/
public static <T extends Enum<T>> T valueOfIgnoreCase(Class<T> enumeration, String name) {
    for(Enum enumValue : enumeration.getEnumConstants()) {
        if(enumValue.name().equalsIgnoreCase(name)) {
            return (T) enumValue;
        }
    }
    throw new IllegalArgumentException("There is no value with name '" + name + " in Enum " + enumeration.getClass().getName());        
}
link|improve this answer
feedback
public static <T extends Enum<T>> T valueOfIgnoreCase(Class<T> enumeration, String name) {
    for(T enumValue : enumeration.getEnumConstants()) {
        if(enumValue.name().equalsIgnoreCase(name)) {
            return enumValue;
        }
    }
    throw new IllegalArgumentException("There is no value with name '" + name + " in Enum " + enumeration.getClass().getName());        
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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