public static enum DaoFactoryEvent.Type extends Enum<DaoFactoryEvent.Type>
| Enum Constant and Description |
|---|
MODEL_CHANGED |
TRANSACTION_COMMITTED |
TRANSACTION_COMMITTING |
TRANSACTION_ROLLED_BACK |
TRANSACTION_ROLLING_BACK |
TRANSACTION_STARTED |
| Modifier and Type | Method and Description |
|---|---|
static DaoFactoryEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DaoFactoryEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DaoFactoryEvent.Type TRANSACTION_STARTED
public static final DaoFactoryEvent.Type TRANSACTION_COMMITTING
public static final DaoFactoryEvent.Type TRANSACTION_COMMITTED
public static final DaoFactoryEvent.Type TRANSACTION_ROLLING_BACK
public static final DaoFactoryEvent.Type TRANSACTION_ROLLED_BACK
public static final DaoFactoryEvent.Type MODEL_CHANGED
public static DaoFactoryEvent.Type[] values()
for (DaoFactoryEvent.Type c : DaoFactoryEvent.Type.values()) System.out.println(c);
public static DaoFactoryEvent.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.