public enum PrivilegeLevel extends java.lang.Enum<PrivilegeLevel>
Enum Constant and Description |
---|
Administrator |
Callback |
MaximumAvailable |
Operator |
User |
Modifier and Type | Method and Description |
---|---|
static PrivilegeLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrivilegeLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrivilegeLevel Callback
public static final PrivilegeLevel User
public static final PrivilegeLevel Operator
public static final PrivilegeLevel Administrator
public static final PrivilegeLevel MaximumAvailable
public static PrivilegeLevel[] values()
for (PrivilegeLevel c : PrivilegeLevel.values()) System.out.println(c);
public static PrivilegeLevel 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