public enum TransferStatus extends java.lang.Enum<TransferStatus>
| 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.
|
@SerializedName(value="pending") public static final TransferStatus PENDING
@SerializedName(value="completed") public static final TransferStatus COMPLETED
@SerializedName(value="rejected") public static final TransferStatus REJECTED
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