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:
    }
 }

 
     
    