public static enum Transfer.Status extends Enum<Transfer.Status>
| Enum Constant and Description |
|---|
CANCELED |
COMPLETE |
CREATED |
PENDING |
REVERSED |
| Modifier and Type | Method and Description |
|---|---|
static Transfer.Status |
create(String val) |
String |
toString() |
static Transfer.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transfer.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transfer.Status CREATED
public static final Transfer.Status PENDING
public static final Transfer.Status COMPLETE
public static final Transfer.Status CANCELED
public static final Transfer.Status REVERSED
public static Transfer.Status[] values()
for (Transfer.Status c : Transfer.Status.values()) System.out.println(c);
public static Transfer.Status 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 toString()
toString in class Enum<Transfer.Status>public static Transfer.Status create(String val)
Copyright © 2014. All rights reserved.