public enum TransactionPropagationType extends Enum<TransactionPropagationType>
| Enum Constant and Description |
|---|
Mandatory |
Never |
NotSupported |
Required |
RequiresNew |
Supports |
| Modifier and Type | Method and Description |
|---|---|
static TransactionPropagationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionPropagationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionPropagationType Mandatory
public static final TransactionPropagationType Never
public static final TransactionPropagationType NotSupported
public static final TransactionPropagationType Required
public static final TransactionPropagationType RequiresNew
public static final TransactionPropagationType Supports
public static TransactionPropagationType[] values()
for (TransactionPropagationType c : TransactionPropagationType.values()) System.out.println(c);
public static TransactionPropagationType 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 © 2009-2015 The Apache Software Foundation. All Rights Reserved.