public static enum Audit.Action extends Enum<Audit.Action>
Enum Constant and Description |
---|
CREATE
The CREATE.
|
DELETE
The DELETE.
|
UPDATE
The UPDATE.
|
Modifier and Type | Method and Description |
---|---|
static Audit.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Audit.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Audit.Action CREATE
public static final Audit.Action DELETE
public static final Audit.Action UPDATE
public static Audit.Action[] values()
for (Audit.Action c : Audit.Action.values()) System.out.println(c);
public static Audit.Action 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 © 2015–2021 Yahoo! Inc.. All rights reserved.