public enum EventSetAction extends Enum<EventSetAction>
| Enum Constant and Description |
|---|
Deleted
Удаление элемента
|
Deleting
Попытка удаления элемента
|
Inserted
Добавление элемента
|
Inserting
Попытка добавления элемента
|
| Modifier and Type | Method and Description |
|---|---|
static EventSetAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventSetAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventSetAction Inserted
public static final EventSetAction Deleted
public static final EventSetAction Inserting
public static final EventSetAction Deleting
public static EventSetAction[] values()
for (EventSetAction c : EventSetAction.values()) System.out.println(c);
public static EventSetAction 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 © 2017. All rights reserved.