I am trying to define an enum type with Integer values. I am trying to do this because I use this particular value in multiple places in my code and it can only be this. The code below does not work. I guess I am not supposed to use enum like this. Instead should I use a class and put the possible values in an array?
public enum Pitch {
"60" , "62", "64", "65", "67", "69", "71", "72", "74";
}