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