I have an enum and I need to bind these values to the switch in another class, Help please, I'm confused
public enum GSProccesingType {
bigCover,
cover,
other
}
class Test {
switch (GSProccesingType){
case bigCover:
break;
case cover:
break;
case default:
}
}

switchon a value, not on a type.case default:is also a syntax error. Did you meandefault:orcase other:?