Serializable, Comparable<BankAccountStatus>public enum BankAccountStatus extends Enum<BankAccountStatus>
| Enum Constant | Description |
|---|---|
ERRORED |
|
NEW |
|
UNABLE_TO_VERIFY |
|
VERIFIED |
| Modifier and Type | Method | Description |
|---|---|---|
static BankAccountStatus |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static BankAccountStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("new")
public static final BankAccountStatus NEW
@SerializedName("verified")
public static final BankAccountStatus VERIFIED
@SerializedName("unable_to_verify")
public static final BankAccountStatus UNABLE_TO_VERIFY
@SerializedName("errored")
public static final BankAccountStatus ERRORED
public static BankAccountStatus[] values()
for (BankAccountStatus c : BankAccountStatus.values()) System.out.println(c);
public static BankAccountStatus 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 © 2018 The Apache Software Foundation. All rights reserved.