public enum TransactionAttributeType extends java.lang.Enum<TransactionAttributeType>
Enum Constant and Description |
---|
MANDATORY |
NEVER |
NOT_SUPPORTED |
REQUIRED |
REQUIRES_NEW |
SUPPORTS |
Modifier and Type | Method and Description |
---|---|
static TransactionAttributeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionAttributeType MANDATORY
public static final TransactionAttributeType REQUIRED
public static final TransactionAttributeType REQUIRES_NEW
public static final TransactionAttributeType SUPPORTS
public static final TransactionAttributeType NOT_SUPPORTED
public static final TransactionAttributeType NEVER
public static TransactionAttributeType[] values()
for (TransactionAttributeType c : TransactionAttributeType.values()) System.out.println(c);
public static TransactionAttributeType 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