Answers for "an enum switch case label must be the unqualified name of an enumeration constant"

0

an enum switch case label must be the unqualified name of an enumeration constant

switch (enumExample) {
    case VALUE_A: {
        //..
        break;
    }
}
Posted by: Guest on April-27-2021

Code answers related to "an enum switch case label must be the unqualified name of an enumeration constant"

Browse Popular Code Answers by Language