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