public enum TransactionManagementType extends java.lang.Enum<TransactionManagementType>
TransactionManagementType
is used with the TransactionManagement
annotation to
specify whether container-managed or bean-managed transaction management is used.TransactionManagement
Enum Constant and Description |
---|
BEAN
Bean-managed transaction management is used.
|
CONTAINER
Container-managed transaction management is used.
|
Modifier and Type | Method and Description |
---|---|
static TransactionManagementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionManagementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionManagementType CONTAINER
public static final TransactionManagementType BEAN
public static TransactionManagementType[] values()
for (TransactionManagementType c : TransactionManagementType.values()) System.out.println(c);
public static TransactionManagementType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null