public static enum IManager.Role extends java.lang.Enum<IManager.Role>
| Enum Constant and Description |
|---|
ADMIN
The ADMIN.
|
OPERATOR
Assigning beacons to managers
.
|
SUPERUSER
Manager who has SUPERUSER role has the following responsibilities and qualifications:
Listing subordinates
Assigning managers to supervisors
Assigning beacons to managers
creating/deleting managers
.
|
| Modifier and Type | Method and Description |
|---|---|
static IManager.Role |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IManager.Role[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IManager.Role SUPERUSER
public static final IManager.Role ADMIN
public static final IManager.Role OPERATOR
public static IManager.Role[] values()
for (IManager.Role c : IManager.Role.values()) System.out.println(c);
public static IManager.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