public enum SendMerchantOption extends java.lang.Enum<SendMerchantOption>
| Enum Constant and Description |
|---|
IN_SEVICE_COUPON_MERCHANT |
MANUAL_INPUT_MERCHANT |
| Modifier and Type | Method and Description |
|---|---|
static SendMerchantOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SendMerchantOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="IN_SEVICE_COUPON_MERCHANT") public static final SendMerchantOption IN_SEVICE_COUPON_MERCHANT
@SerializedName(value="MANUAL_INPUT_MERCHANT") public static final SendMerchantOption MANUAL_INPUT_MERCHANT
public static SendMerchantOption[] values()
for (SendMerchantOption c : SendMerchantOption.values()) System.out.println(c);
public static SendMerchantOption 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