Serializable, Comparable<TransactionManagementType>public enum TransactionManagementType extends Enum<TransactionManagementType>
TransactionManagementType is used with the TransactionManagement annotation to
specify whether container-managed or bean-managed transaction management is used.TransactionManagement| Enum Constant | Description |
|---|---|
BEAN |
Bean-managed transaction management is used.
|
CONTAINER |
Container-managed transaction management is used.
|
| Modifier and Type | Method | Description |
|---|---|---|
static TransactionManagementType |
valueOf(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(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 © 2018, 2022 Eclipse Foundation.
Use is subject to license terms.