Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My class have an Enum as attribute. It uses a String to set this attr. There are many Enum classes. How can I refactor it?

public void setType(String s) {  

for (MyEnum1 e : MyEnum1.values()) {  
    if (e.name().equalsIgnoreCase(s))  
    this.type = e;  
}  
for (MyEnum2 e : MyEnum2.values()) {  
    if (e.name().equalsIgnoreCase(s))  
    this.type = e;  
}  
for ...  

Thanks in advance.

share|improve this question

1 Answer

Use MyEnum1.valueOf(String).

share|improve this answer
+ toUpperCase() to achieve case-insensitivity – axtavt Nov 3 '11 at 17:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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