public static enum WithdrawalRequest.Status extends Enum<WithdrawalRequest.Status>
Enum Constant and Description |
---|
canceled |
failed |
finished |
in_process |
open |
Modifier and Type | Method and Description |
---|---|
static WithdrawalRequest.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WithdrawalRequest.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WithdrawalRequest.Status open
public static final WithdrawalRequest.Status in_process
public static final WithdrawalRequest.Status finished
public static final WithdrawalRequest.Status canceled
public static final WithdrawalRequest.Status failed
public static WithdrawalRequest.Status[] values()
for (WithdrawalRequest.Status c : WithdrawalRequest.Status.values()) System.out.println(c);
public static WithdrawalRequest.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 nullCopyright © 2012–2018 Xeiam, LLC. All rights reserved.