public enum ProductType extends java.lang.Enum<ProductType>
| Enum Constant and Description |
|---|
IN_APP |
MINI_PROGRAM |
OFFICIAL_ACCOUNT |
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
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