public static enum TransactionImpl.State extends Enum<TransactionImpl.State>
| Enum Constant and Description |
|---|
ABORTED |
ABORTING |
COMMITTED |
COMMITTING |
ERROR |
OPEN |
| Modifier and Type | Method and Description |
|---|---|
static TransactionImpl.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionImpl.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionImpl.State OPEN
public static final TransactionImpl.State COMMITTING
public static final TransactionImpl.State ABORTING
public static final TransactionImpl.State COMMITTED
public static final TransactionImpl.State ABORTED
public static final TransactionImpl.State ERROR
public static TransactionImpl.State[] values()
for (TransactionImpl.State c : TransactionImpl.State.values()) System.out.println(c);
public static TransactionImpl.State 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 © 2017–2021 Apache Software Foundation. All rights reserved.