public static enum AccountCreateParams.RequestedCapability extends java.lang.Enum<AccountCreateParams.RequestedCapability> implements ApiRequestParams.EnumParam
Enum Constant and Description |
---|
CARD_ISSUING |
CARD_PAYMENTS |
LEGACY_PAYMENTS |
TRANSFERS |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static AccountCreateParams.RequestedCapability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountCreateParams.RequestedCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="card_issuing") public static final AccountCreateParams.RequestedCapability CARD_ISSUING
@SerializedName(value="card_payments") public static final AccountCreateParams.RequestedCapability CARD_PAYMENTS
@SerializedName(value="legacy_payments") public static final AccountCreateParams.RequestedCapability LEGACY_PAYMENTS
@SerializedName(value="transfers") public static final AccountCreateParams.RequestedCapability TRANSFERS
public static AccountCreateParams.RequestedCapability[] values()
for (AccountCreateParams.RequestedCapability c : AccountCreateParams.RequestedCapability.values()) System.out.println(c);
public static AccountCreateParams.RequestedCapability valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()
getValue
in interface ApiRequestParams.EnumParam