public static enum Permissions.Action extends Enum<Permissions.Action>
Modifier and Type | Method and Description |
---|---|
static Permissions.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Permissions.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Permissions.Action READ
public static final Permissions.Action WRITE
public static final Permissions.Action PROCESS
public static final Permissions.Action DELETE
public static final Permissions.Action INJECT
public static Permissions.Action[] values()
for (Permissions.Action c : Permissions.Action.values()) System.out.println(c);
public static Permissions.Action valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2003-2019 Serge Brisson. All Rights Reserved.