public enum ConfigModificationRole extends Enum<ConfigModificationRole>
Enum Constant and Description |
---|
ADMIN |
CREATOR |
MEMBER |
OWNER |
SYSTEM |
Modifier and Type | Method and Description |
---|---|
static ConfigModificationRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigModificationRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigModificationRole ADMIN
public static final ConfigModificationRole SYSTEM
public static final ConfigModificationRole CREATOR
public static final ConfigModificationRole OWNER
public static final ConfigModificationRole MEMBER
public static ConfigModificationRole[] values()
for (ConfigModificationRole c : ConfigModificationRole.values()) System.out.println(c);
public static ConfigModificationRole 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 © 2018. All Rights Reserved.