I have a enum for various operations, I want to iterate through the enum Operations 
public enum Operations 
{
create,update,delete,view,compare,login
}
How can i achieve this?
I have a enum for various operations, I want to iterate through the enum Operations 
public enum Operations 
{
create,update,delete,view,compare,login
}
How can i achieve this?
 
    
    for (Operations op : Operations.values()) {
    ...
}
