public static enum DaoEvent.Type extends Enum<DaoEvent.Type>
| Enum Constant and Description |
|---|
ALL_DEFAULT_DELETED |
ALL_DELETED |
OBJECT_CREATED |
OBJECT_DELETED |
OBJECT_UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static DaoEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DaoEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DaoEvent.Type OBJECT_CREATED
public static final DaoEvent.Type OBJECT_UPDATED
public static final DaoEvent.Type OBJECT_DELETED
public static final DaoEvent.Type ALL_DEFAULT_DELETED
public static final DaoEvent.Type ALL_DELETED
public static DaoEvent.Type[] values()
for (DaoEvent.Type c : DaoEvent.Type.values()) System.out.println(c);
public static DaoEvent.Type 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 © 2013. All Rights Reserved.