public static enum EditContentEvent.EditContentAction extends Enum<EditContentEvent.EditContentAction>
| Enum Constant and Description |
|---|
CANCEL
Editing canceled.
|
OK
Editing finished.
|
START
Editing has started.
|
| Modifier and Type | Method and Description |
|---|---|
static EditContentEvent.EditContentAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EditContentEvent.EditContentAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditContentEvent.EditContentAction START
public static final EditContentEvent.EditContentAction OK
public static final EditContentEvent.EditContentAction CANCEL
public static EditContentEvent.EditContentAction[] values()
for (EditContentEvent.EditContentAction c : EditContentEvent.EditContentAction.values()) System.out.println(c);
public static EditContentEvent.EditContentAction 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 SAPERION AG. All rights reserved.