public enum CommitError extends Enum<CommitError>
| Enum Constant and Description |
|---|
MARK_ROLL_FORWARD_ABANDONED |
VERIFY_FAIL |
VERIFY_FAIL_ABORT_ABANDONED |
VERIFY_FAIL_CLOSE_ABANDONED |
| Modifier and Type | Method and Description |
|---|---|
static CommitError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommitError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommitError VERIFY_FAIL
public static final CommitError VERIFY_FAIL_CLOSE_ABANDONED
public static final CommitError VERIFY_FAIL_ABORT_ABANDONED
public static final CommitError MARK_ROLL_FORWARD_ABANDONED
public final String str
public static CommitError[] values()
for (CommitError c : CommitError.values()) System.out.println(c);
public static CommitError 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.