public enum ProductType extends java.lang.Enum<ProductType>
| Enum Constant and Description |
|---|
DIGITAL |
IN_APP |
INVOICE |
MINI_PROGRAM |
OFFICIAL_ACCOUNT |
PAY_BY_INSTALMENT |
PAY_BY_INSTALMENT_2 |
PAY_BY_INSTALMENT_3 |
PAY_BY_INSTALMENT_4 |
PAY_BY_INSTALMENT_6 |
PAY_IN_FULL |
PAY_LATER |
PHYSICAL |
QR_CODE |
| Modifier and Type | Method and Description |
|---|---|
static ProductType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProductType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="QR Code") public static final ProductType QR_CODE
@SerializedName(value="In-App") public static final ProductType IN_APP
@SerializedName(value="Official Account") public static final ProductType OFFICIAL_ACCOUNT
@SerializedName(value="Mini Program") public static final ProductType MINI_PROGRAM
@SerializedName(value="pay_in_full") public static final ProductType PAY_IN_FULL
@SerializedName(value="pay_by_instalment") public static final ProductType PAY_BY_INSTALMENT
@SerializedName(value="pay_by_instalment_2") public static final ProductType PAY_BY_INSTALMENT_2
@SerializedName(value="pay_by_instalment_3") public static final ProductType PAY_BY_INSTALMENT_3
@SerializedName(value="pay_by_instalment_4") public static final ProductType PAY_BY_INSTALMENT_4
@SerializedName(value="pay_by_instalment_6") public static final ProductType PAY_BY_INSTALMENT_6
@SerializedName(value="invoice") public static final ProductType INVOICE
@SerializedName(value="pay_later") public static final ProductType PAY_LATER
@SerializedName(value="digital") public static final ProductType DIGITAL
@SerializedName(value="physical") public static final ProductType PHYSICAL
public static ProductType[] values()
for (ProductType c : ProductType.values()) System.out.println(c);
public static ProductType 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 null