public static enum SecurityManager.BuiltInAction extends Enum<SecurityManager.BuiltInAction>
| Enum Constant and Description |
|---|
ACTION_EXECUTE |
ACTION_READ |
| Modifier and Type | Method and Description |
|---|---|
static SecurityManager.BuiltInAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityManager.BuiltInAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityManager.BuiltInAction ACTION_EXECUTE
public static final SecurityManager.BuiltInAction ACTION_READ
public static SecurityManager.BuiltInAction[] values()
for (SecurityManager.BuiltInAction c : SecurityManager.BuiltInAction.values()) System.out.println(c);
public static SecurityManager.BuiltInAction 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 © 1997–2022 CRISTAL-iSE. All rights reserved.