public enum TransactionType extends java.lang.Enum<TransactionType>
Enum Constant and Description |
---|
BeanManaged |
Mandatory |
Never |
NotSupported |
Required |
RequiresNew |
Supports |
Modifier and Type | Method and Description |
---|---|
static TransactionType |
get(TransactionAttributeType type) |
static TransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionType Mandatory
public static final TransactionType Never
public static final TransactionType NotSupported
public static final TransactionType Required
public static final TransactionType RequiresNew
public static final TransactionType Supports
public static final TransactionType BeanManaged
public static TransactionType[] values()
for (TransactionType c : TransactionType.values()) System.out.println(c);
public static TransactionType 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 nullpublic static TransactionType get(TransactionAttributeType type)