public enum CommitStatus extends Enum<CommitStatus>
| Enum Constant and Description |
|---|
ALREADY_ABORTED |
ALREADY_COMMITTED |
CLOSE_ABANDONED |
OK |
ROLL_FORWARD_ABANDONED |
| Modifier and Type | Method and Description |
|---|---|
static CommitStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommitStatus OK
public static final CommitStatus ALREADY_COMMITTED
public static final CommitStatus ALREADY_ABORTED
public static final CommitStatus ROLL_FORWARD_ABANDONED
public static final CommitStatus CLOSE_ABANDONED
public final String str
public static CommitStatus[] values()
for (CommitStatus c : CommitStatus.values()) System.out.println(c);
public static CommitStatus 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 © 2012–2024 Aerospike, Inc. All rights reserved.