public static enum Transactional.TransactionFlowType extends Enum<Transactional.TransactionFlowType>
| Modifier and Type | Method and Description |
|---|---|
static Transactional.TransactionFlowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transactional.TransactionFlowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transactional.TransactionFlowType MANDATORY
public static final Transactional.TransactionFlowType SUPPORTS
public static final Transactional.TransactionFlowType NEVER
public static Transactional.TransactionFlowType[] values()
for (Transactional.TransactionFlowType c : Transactional.TransactionFlowType.values()) System.out.println(c);
public static Transactional.TransactionFlowType 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 © 2005–2017 Oracle Corporation. All rights reserved.