Serializable, Comparable<PaymentTypeName>public enum PaymentTypeName extends Enum<PaymentTypeName>
| Modifier and Type | Method | Description |
|---|---|---|
static PaymentTypeName |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static PaymentTypeName[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("card")
public static final PaymentTypeName CARD
@SerializedName("qr_scan")
public static final PaymentTypeName QR_SCAN
@SerializedName("apple_pay")
public static final PaymentTypeName APPLE_PAY
@SerializedName("konbini")
public static final PaymentTypeName KONBINI
public static PaymentTypeName[] values()
for (PaymentTypeName c : PaymentTypeName.values()) System.out.println(c);
public static PaymentTypeName 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 © 2018 The Apache Software Foundation. All rights reserved.