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