public enum TransactionCompletionState extends Enum<TransactionCompletionState>
| Enum Constant and Description |
|---|
CREATE |
FAILED |
PENDING |
SCHEDULED |
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static TransactionCompletionState |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static TransactionCompletionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionCompletionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionCompletionState CREATE
public static final TransactionCompletionState SCHEDULED
public static final TransactionCompletionState PENDING
public static final TransactionCompletionState FAILED
public static final TransactionCompletionState SUCCESSFUL
public static TransactionCompletionState[] values()
for (TransactionCompletionState c : TransactionCompletionState.values()) System.out.println(c);
public static TransactionCompletionState 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 nullpublic String getValue()
public String toString()
toString in class Enum<TransactionCompletionState>public static TransactionCompletionState fromValue(String text)
Copyright © 2023. All rights reserved.