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