public static enum Account.Role extends java.lang.Enum<Account.Role>
| Enum Constant and Description |
|---|
ADMIN |
BILLING |
MASTER_ADMIN |
MEDIA_LIBRARY_ADMIN |
MEDIA_LIBRARY_USER |
REPORTS |
TECHNICAL_ADMIN |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Account.Role |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Account.Role[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Account.Role MASTER_ADMIN
public static final Account.Role ADMIN
public static final Account.Role TECHNICAL_ADMIN
public static final Account.Role BILLING
public static final Account.Role REPORTS
public static final Account.Role MEDIA_LIBRARY_ADMIN
public static final Account.Role MEDIA_LIBRARY_USER
public static Account.Role[] values()
for (Account.Role c : Account.Role.values()) System.out.println(c);
public static Account.Role 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Account.Role>