public static enum MerchantAccount.Status extends Enum<MerchantAccount.Status>
| Enum Constant and Description |
|---|
ACTIVE |
PENDING |
SUSPENDED |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static MerchantAccount.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MerchantAccount.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MerchantAccount.Status PENDING
public static final MerchantAccount.Status ACTIVE
public static final MerchantAccount.Status SUSPENDED
public static final MerchantAccount.Status UNRECOGNIZED
public static MerchantAccount.Status[] values()
for (MerchantAccount.Status c : MerchantAccount.Status.values()) System.out.println(c);
public static MerchantAccount.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 © 2013-2018. All Rights Reserved.