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