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