public enum SpecificConfigurationAccess extends java.lang.Enum<SpecificConfigurationAccess>
| Enum Constant and Description |
|---|
MANAGE
Administrators can fully manage the specific configurations
|
MANAGE_CONTENT
Administrators can only manage content on the specific configurations, not other settings
|
| Modifier and Type | Method and Description |
|---|---|
static SpecificConfigurationAccess |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpecificConfigurationAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecificConfigurationAccess MANAGE_CONTENT
public static final SpecificConfigurationAccess MANAGE
public static SpecificConfigurationAccess[] values()
for (SpecificConfigurationAccess c : SpecificConfigurationAccess.values()) System.out.println(c);
public static SpecificConfigurationAccess 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 null