public static enum TransactionState.State extends Enum<TransactionState.State>
| Modifier and Type | Method and Description |
|---|---|
static TransactionState.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionState.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionState.State QUEUED
public static final TransactionState.State LOADING
public static final TransactionState.State FINISHED
public static final TransactionState.State ERROR
public static TransactionState.State[] values()
for (TransactionState.State c : TransactionState.State.values()) System.out.println(c);
public static TransactionState.State 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 © 2016. All rights reserved.