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