PaymentMethod

public enum PaymentMethod extends Enum<PaymentMethod>

The payment method used at the time of purchase for the transaction. Supported method's are: CREDIT_CARD, PAYPAL, POINTS, GIFT_CARD, INTERNET_BANK_PAYMENT, DIRECT_DEBIT, THIRD_PARTY_PROVIDER. Values: CREDIT_CARD,PAYPAL,POINTS,GIFT_CARD,INTERNET_BANK_PAYMENT,DIRECT_DEBIT,THIRD_PARTY_PROVIDER

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
private final String value

Functions

Link copied to clipboard

The payment method used at the time of purchase for the transaction. Supported method's are: CREDIT_CARD, PAYPAL, POINTS, GIFT_CARD, INTERNET_BANK_PAYMENT, DIRECT_DEBIT, THIRD_PARTY_PROVIDER. Values: CREDIT_CARD,PAYPAL,POINTS,GIFT_CARD,INTERNET_BANK_PAYMENT,DIRECT_DEBIT,THIRD_PARTY_PROVIDER

Link copied to clipboard
public final String getValue()
Link copied to clipboard
public final PaymentMethod valueOf(String value)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
public final Array<PaymentMethod> values()

Returns an array containing the constants of this enum type, in the order they're declared.