public enum AuditLevel extends Enum<AuditLevel>
| Enum Constant and Description |
|---|
ACCESSORS
Modifiers plus commands that retrieve information |
INTERNAL
All admin commands, including internal ones
|
MODIFIERS
Admin commands that change
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Gets a
String representation of the value
of the enum. |
static AuditLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLevel MODIFIERS
public static final AuditLevel ACCESSORS
Modifiers plus commands that retrieve informationpublic static final AuditLevel INTERNAL
public static AuditLevel[] values()
for (AuditLevel c : AuditLevel.values()) System.out.println(c);
public static AuditLevel 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 © 2019. All rights reserved.