public enum UpdateType extends java.lang.Enum<UpdateType> implements EnumParam
| Enum Constant and Description |
|---|
COMPACT_LIST |
COVER_LIST |
DONATION |
LIST |
MATCH |
MATCHES |
TABLE |
TEXT |
TILES |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static UpdateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="compact_list") public static final UpdateType COMPACT_LIST
@SerializedName(value="cover_list") public static final UpdateType COVER_LIST
@SerializedName(value="donation") public static final UpdateType DONATION
@SerializedName(value="list") public static final UpdateType LIST
@SerializedName(value="match") public static final UpdateType MATCH
@SerializedName(value="matches") public static final UpdateType MATCHES
@SerializedName(value="table") public static final UpdateType TABLE
@SerializedName(value="text") public static final UpdateType TEXT
@SerializedName(value="tiles") public static final UpdateType TILES
public static UpdateType[] values()
for (UpdateType c : UpdateType.values()) System.out.println(c);
public static UpdateType 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<UpdateType>