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