public enum TransferStatus extends Enum<TransferStatus>
| Enum Constant and Description |
|---|
BLOCKED
A blocked transfer that can be accepted (
SUCCESSFUL) or rejected (REJECTED). |
REJECTED
A rejected transfer.
|
SUCCESSFUL
A successful transfer.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TransferStatus |
valueOf(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 SUCCESSFUL
public static final TransferStatus BLOCKED
SUCCESSFUL) or rejected (REJECTED). Blocked transfers
counts in the blocked balance.public static final TransferStatus REJECTED
public static TransferStatus[] values()
for (TransferStatus c : TransferStatus.values()) System.out.println(c);
public static TransferStatus 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<TransferStatus>Copyright © 2011–2014 Everit Kft.. All rights reserved.