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