public static enum AuditLogger.Severity extends Enum<AuditLogger.Severity>
Enum Constant and Description |
---|
alert |
crit |
debug |
emerg |
err |
info |
notice |
warning |
Modifier and Type | Method and Description |
---|---|
static AuditLogger.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogger.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLogger.Severity emerg
public static final AuditLogger.Severity alert
public static final AuditLogger.Severity crit
public static final AuditLogger.Severity err
public static final AuditLogger.Severity warning
public static final AuditLogger.Severity notice
public static final AuditLogger.Severity info
public static final AuditLogger.Severity debug
public static AuditLogger.Severity[] values()
for (AuditLogger.Severity c : AuditLogger.Severity.values()) System.out.println(c);
public static AuditLogger.Severity 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 © 2017 dcm4che.org. All rights reserved.