|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Persister.Action>
org.norther.tammi.root.db.Persister.Action
public static enum Persister.Action
The persistence actions.
| Enum Constant Summary | |
|---|---|
DELETE
The delete action. |
|
INSERT
The insert action. |
|
NULLIFY
The nullify action. |
|
SELECT
The select action. |
|
STORE
The store action. |
|
UPDATE
The update action. |
|
| Method Summary | |
|---|---|
static Persister.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Persister.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 Persister.Action SELECT
public static final Persister.Action INSERT
public static final Persister.Action UPDATE
public static final Persister.Action STORE
public static final Persister.Action DELETE
public static final Persister.Action NULLIFY
| Method Detail |
|---|
public static Persister.Action[] values()
for (Persister.Action c : Persister.Action.values()) System.out.println(c);
public static Persister.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
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||