public enum VenmoPaymentTokenUsagePattern extends Enum<VenmoPaymentTokenUsagePattern>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
DEFERRED
Pay after use, non-recurring post-paid, variable amount, irregular frequency.
|
IMMEDIATE
On-demand instant payments – non-recurring, pre-paid, variable amount, variable frequency.
|
RECURRING_POSTPAID
Pay on a fixed date based on usage or consumption after the goods/service is delivered.
|
RECURRING_PREPAID
Pay upfront fixed or variable amount on a fixed date before the goods/service is delivered.
|
THRESHOLD_POSTPAID
Charge payer when the set amount is reached or monthly billing cycle, whichever comes first, after the goods/service is delivered.
|
THRESHOLD_PREPAID
Charge payer when the set amount is reached or monthly billing cycle, whichever comes first, before the goods/service is delivered.
|
| Modifier and Type | Method and Description |
|---|---|
static VenmoPaymentTokenUsagePattern |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static VenmoPaymentTokenUsagePattern |
fromString(String toConvert)
Returns the enum member associated with the given string value.
|
String |
toString()
Get string representation of this enum.
|
static List<String> |
toValue(List<VenmoPaymentTokenUsagePattern> toConvert)
Convert list of VenmoPaymentTokenUsagePattern values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static VenmoPaymentTokenUsagePattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VenmoPaymentTokenUsagePattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VenmoPaymentTokenUsagePattern IMMEDIATE
public static final VenmoPaymentTokenUsagePattern DEFERRED
public static final VenmoPaymentTokenUsagePattern RECURRING_PREPAID
public static final VenmoPaymentTokenUsagePattern RECURRING_POSTPAID
public static final VenmoPaymentTokenUsagePattern THRESHOLD_PREPAID
public static final VenmoPaymentTokenUsagePattern THRESHOLD_POSTPAID
public static final VenmoPaymentTokenUsagePattern _UNKNOWN
public static VenmoPaymentTokenUsagePattern[] values()
for (VenmoPaymentTokenUsagePattern c : VenmoPaymentTokenUsagePattern.values()) System.out.println(c);
public static VenmoPaymentTokenUsagePattern 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 VenmoPaymentTokenUsagePattern constructFromString(String toConvert) throws IOException
toConvert - String value to get enum member.IOException - when provided value is not mapped to any enum member.public static VenmoPaymentTokenUsagePattern fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<VenmoPaymentTokenUsagePattern>public static List<String> toValue(List<VenmoPaymentTokenUsagePattern> toConvert)
toConvert - The list of VenmoPaymentTokenUsagePattern values to convert.Copyright © 2025. All rights reserved.