public enum TransferStatus extends java.lang.Enum<TransferStatus>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED |
REQUESTED |
REVERSED |
| Modifier and Type | Method and Description |
|---|---|
static TransferStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransferStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferStatus REQUESTED
public static final TransferStatus COMPLETED
public static final TransferStatus FAILED
public static final TransferStatus REVERSED
public static TransferStatus[] values()
for (TransferStatus c : TransferStatus.values()) System.out.println(c);
public static TransferStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null