public enum SeamManagedTransactionType extends Enum<SeamManagedTransactionType>
| Enum Constant and Description |
|---|
DISABLED |
ENABLED |
RENDER_RESPONSE
Transactions are only enabled during the RENDER_RESPONSE phase
|
| Modifier and Type | Method and Description |
|---|---|
static SeamManagedTransactionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeamManagedTransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeamManagedTransactionType ENABLED
public static final SeamManagedTransactionType DISABLED
public static final SeamManagedTransactionType RENDER_RESPONSE
public static SeamManagedTransactionType[] values()
for (SeamManagedTransactionType c : SeamManagedTransactionType.values()) System.out.println(c);
public static SeamManagedTransactionType 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 © 2009-2013 Seam Framework. All Rights Reserved.