|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TransactionPropagation>
com.jpattern.orm.transaction.TransactionPropagation
public enum TransactionPropagation
| Enum Constant Summary | |
|---|---|
MANDATORY
Support a current transaction; throw an exception if no current transaction exists. |
|
NESTED
Execute within a nested transaction if a current transaction exists. |
|
NEVER
Do not support a current transaction; throw an exception if a current transaction exists. |
|
NOT_SUPPORTED
Do not support a current transaction; rather always execute non-transactionally. |
|
REQUIRED
Support a current transaction; create a new one if none exists. |
|
REQUIRES_NEW
Create a new transaction, suspending the current transaction if one exists. |
|
SUPPORTS
Support a current transaction; execute non-transactionally if none exists. |
|
| Method Summary | |
|---|---|
int |
getTransactionPropagation()
|
static TransactionPropagation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TransactionPropagation[] |
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 TransactionPropagation REQUIRED
public static final TransactionPropagation SUPPORTS
public static final TransactionPropagation MANDATORY
public static final TransactionPropagation REQUIRES_NEW
public static final TransactionPropagation NOT_SUPPORTED
public static final TransactionPropagation NEVER
public static final TransactionPropagation NESTED
| Method Detail |
|---|
public static TransactionPropagation[] values()
for (TransactionPropagation c : TransactionPropagation.values()) System.out.println(c);
public static TransactionPropagation 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 nullpublic int getTransactionPropagation()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||