public enum AuditStatus extends Enum<AuditStatus>
| Enum Constant and Description |
|---|
FAILED |
SUCCESSFUL |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static AuditStatus |
forName(String name) |
static AuditStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditStatus SUCCESSFUL
public static final AuditStatus FAILED
public static final AuditStatus UNDEFINED
public static AuditStatus[] values()
for (AuditStatus c : AuditStatus.values()) System.out.println(c);
public static AuditStatus 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 static AuditStatus forName(String name)
Copyright © 2019. All rights reserved.