public enum TenantAction extends Enum<TenantAction>
| Enum Constant and Description |
|---|
CREATE_TENANT |
DELETE_TENANT |
MANAGE_PROFILES |
MANAGE_TICKETS |
READ_TENANT |
UPDATE_TENANT |
| Modifier and Type | Method and Description |
|---|---|
static TenantAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TenantAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TenantAction CREATE_TENANT
public static final TenantAction READ_TENANT
public static final TenantAction UPDATE_TENANT
public static final TenantAction DELETE_TENANT
public static final TenantAction MANAGE_PROFILES
public static final TenantAction MANAGE_TICKETS
public static TenantAction[] values()
for (TenantAction c : TenantAction.values()) System.out.println(c);
public static TenantAction 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 © 2015 CrafterCMS. All Rights Reserved.