public enum TransactionSupportType extends java.lang.Enum<TransactionSupportType>
| Enum Constant | Description |
|---|---|
LocalTransaction |
|
NoTransaction |
|
XATransaction |
| Modifier and Type | Method | Description |
|---|---|---|
static TransactionSupportType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TransactionSupportType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionSupportType NoTransaction
public static final TransactionSupportType LocalTransaction
public static final TransactionSupportType XATransaction
public static TransactionSupportType[] values()
for (TransactionSupportType c : TransactionSupportType.values()) System.out.println(c);
public static TransactionSupportType 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 nullCopyright © 2018 JBoss by Red Hat. All rights reserved.