public static enum OTransaction.TXSTATUS extends Enum<OTransaction.TXSTATUS>
Enum Constant and Description |
---|
BEGUN |
COMMITTING |
COMPLETED |
INVALID |
ROLLBACKING |
ROLLED_BACK |
Modifier and Type | Method and Description |
---|---|
static OTransaction.TXSTATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OTransaction.TXSTATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OTransaction.TXSTATUS INVALID
public static final OTransaction.TXSTATUS BEGUN
public static final OTransaction.TXSTATUS COMMITTING
public static final OTransaction.TXSTATUS ROLLBACKING
public static final OTransaction.TXSTATUS COMPLETED
public static final OTransaction.TXSTATUS ROLLED_BACK
public static OTransaction.TXSTATUS[] values()
for (OTransaction.TXSTATUS c : OTransaction.TXSTATUS.values()) System.out.println(c);
public static OTransaction.TXSTATUS 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–2020 OrientDB. All rights reserved.