public static enum AuditSupport.AuditSeverity extends Enum<AuditSupport.AuditSeverity>
Enum Constant and Description |
---|
ERROR
Audit logs to represent erroneous behaviour of the system
|
INFO
Informational level audit logs
|
SUCCESS
Audi logs representing the stressfulness of invoked actions
|
WARN
Audit logs representing warnings
|
Modifier and Type | Method and Description |
---|---|
int |
getIndex() |
static AuditSupport.AuditSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditSupport.AuditSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditSupport.AuditSeverity SUCCESS
public static final AuditSupport.AuditSeverity INFO
public static final AuditSupport.AuditSeverity WARN
public static final AuditSupport.AuditSeverity ERROR
public static AuditSupport.AuditSeverity[] values()
for (AuditSupport.AuditSeverity c : AuditSupport.AuditSeverity.values()) System.out.println(c);
public static AuditSupport.AuditSeverity 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 nullpublic int getIndex()
Copyright © 2010–2016 AdroitLogic. All rights reserved.