public enum AuditType extends Enum<AuditType>
| Enum Constant and Description |
|---|
CHANGE
generated a change
|
DELETE
deleted something
|
NEW
generated a new entry
|
UNKNOWN
backwards compatibility
|
| Modifier and Type | Method and Description |
|---|---|
static AuditType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditType UNKNOWN
public static final AuditType NEW
public static final AuditType CHANGE
public static final AuditType DELETE
public static AuditType[] values()
for (AuditType c : AuditType.values()) System.out.println(c);
public static AuditType 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 © 2014 Cinovo AG. All Rights Reserved.