Change it to this:
switch (enumExample) {
case VALUE_A: {
//..
break;
}
}
The clue is in the error. You don’t need to qualify case
labels with the enum type, just its value.
Change it to this:
switch (enumExample) {
case VALUE_A: {
//..
break;
}
}
The clue is in the error. You don’t need to qualify case
labels with the enum type, just its value.