Why is it not possible to use enum values as strings in a switch case? (Or what is wrong with this:)
String argument;
switch (argument) {
    case MyEnum.VALUE1.toString(): // Isn't this equal to "VALUE1" ?
    // something    
break;
    case MyEnum.VALUE2.toString():
    // something else
break;
 
     
     
     
    