public static enum Manager.Role extends java.lang.Enum<Manager.Role>
| Enum Constant and Description | 
|---|
| ADMINAdmin role. | 
| OPERATOROperator role. | 
| SUPERUSERSuperuser role. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Manager.Role | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Manager.Role[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Manager.Role SUPERUSER
public static final Manager.Role ADMIN
public static final Manager.Role OPERATOR
public static Manager.Role[] values()
for (Manager.Role c : Manager.Role.values()) System.out.println(c);
public static Manager.Role valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null