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