public static enum EntryAction.ActionType extends Enum<EntryAction.ActionType>
| Enum Constant and Description |
|---|
add
Type add.
|
delete
Type delete.
|
update
Type update.
|
| Modifier and Type | Method and Description |
|---|---|
static EntryAction.ActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntryAction.ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryAction.ActionType delete
public static final EntryAction.ActionType update
public static final EntryAction.ActionType add
public static EntryAction.ActionType[] values()
for (EntryAction.ActionType c : EntryAction.ActionType.values()) System.out.println(c);
public static EntryAction.ActionType 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 © 2016–2022. All rights reserved.