public static enum TransactionStatusEvent.State extends java.lang.Enum<TransactionStatusEvent.State>
| Enum Constant and Description |
|---|
ABORTING |
COMMITING |
DONE |
PAUSED |
PREPARING |
PREPARING_FOR_ABORT |
READY |
| Modifier and Type | Method and Description |
|---|---|
int |
intValue() |
java.lang.String |
toString() |
static TransactionStatusEvent.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionStatusEvent.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionStatusEvent.State READY
public static final TransactionStatusEvent.State PREPARING
public static final TransactionStatusEvent.State PREPARING_FOR_ABORT
public static final TransactionStatusEvent.State COMMITING
public static final TransactionStatusEvent.State ABORTING
public static final TransactionStatusEvent.State DONE
public static final TransactionStatusEvent.State PAUSED
public static TransactionStatusEvent.State[] values()
for (TransactionStatusEvent.State c : TransactionStatusEvent.State.values()) System.out.println(c);
public static TransactionStatusEvent.State 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 java.lang.String toString()
toString in class java.lang.Enum<TransactionStatusEvent.State>public int intValue()