|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Transactional.Action> net.sf.basedb.core.Transactional.Action
public static enum Transactional.Action
Enumeration constants used to tell the item what is going on in the core.
Enum Constant Summary | |
---|---|
CREATE
The item is a new item and is beeing saved to the database for the first time. |
|
DELETE
The item is an existing item which is beeing deleted. |
|
UPDATE
The item is an existing item which is beeing updated. |
Method Summary | |
---|---|
static Transactional.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Transactional.Action[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Transactional.Action CREATE
public static final Transactional.Action UPDATE
public static final Transactional.Action DELETE
Method Detail |
---|
public static Transactional.Action[] values()
for (Transactional.Action c : Transactional.Action.values()) System.out.println(c);
public static Transactional.Action valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
2.17.2: 2011-06-17 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |