public enum CardCategory extends java.lang.Enum<CardCategory>
| Enum Constant and Description |
|---|
ALL |
COMMERCIAL |
CONSUMER |
NOT_SET |
OTHER |
| Modifier and Type | Method and Description |
|---|---|
static CardCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Consumer",
alternate={"CONSUMER","consumer"})
public static final CardCategory CONSUMER
@SerializedName(value="Commercial",
alternate={"COMMERCIAL","commercial"})
public static final CardCategory COMMERCIAL
@SerializedName(value="All",
alternate={"ALL","all"})
public static final CardCategory ALL
@SerializedName(value="Other",
alternate={"OTHER","other"})
public static final CardCategory OTHER
@SerializedName(value="NotSet",
alternate={"NOTSET","NOT_SET","Not_Set","notset","not_set"})
public static final CardCategory NOT_SET
public static CardCategory[] values()
for (CardCategory c : CardCategory.values()) System.out.println(c);
public static CardCategory 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