public enum PermissibleAction extends Enum<PermissibleAction>
| Modifier and Type | Method and Description | 
|---|---|
String | 
getExternalName()  | 
String[] | 
getImpliedActions()  | 
static PermissibleAction | 
interpret(String action)  | 
static PermissibleAction | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static PermissibleAction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PermissibleAction INSERT
public static final PermissibleAction UPDATE
public static final PermissibleAction DELETE
public static final PermissibleAction READ
public static final PermissibleAction ANY
public static PermissibleAction[] values()
for (PermissibleAction c : PermissibleAction.values()) System.out.println(c);
public static PermissibleAction 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 nullpublic String getExternalName()
public String[] getImpliedActions()
public static PermissibleAction interpret(String action)
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.