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