public static enum AuditEntry.Status extends java.lang.Enum<AuditEntry.Status>
| Enum Constant and Description |
|---|
APPLIED |
FAILED |
MANUAL_MARKED_AS_APPLIED |
MANUAL_MARKED_AS_ROLLED_BACK |
ROLLBACK_FAILED |
ROLLED_BACK |
STARTED |
| Modifier and Type | Method and Description |
|---|---|
int |
getPriority() |
boolean |
hasHigherPriorityThan(AuditEntry.Status other) |
AuditEntryRequest.Status |
toRequestStatus() |
static AuditEntry.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuditEntry.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditEntry.Status STARTED
public static final AuditEntry.Status APPLIED
public static final AuditEntry.Status FAILED
public static final AuditEntry.Status ROLLED_BACK
public static final AuditEntry.Status ROLLBACK_FAILED
public static final AuditEntry.Status MANUAL_MARKED_AS_APPLIED
public static final AuditEntry.Status MANUAL_MARKED_AS_ROLLED_BACK
public static AuditEntry.Status[] values()
for (AuditEntry.Status c : AuditEntry.Status.values()) System.out.println(c);
public static AuditEntry.Status valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getPriority()
public boolean hasHigherPriorityThan(AuditEntry.Status other)
public AuditEntryRequest.Status toRequestStatus()