| Enum Constant and Description |
|---|
ALL |
ARCHIVE |
AUDIO |
DEFAULT |
EBOOK |
GIF |
IMAGE |
TEXT |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static GetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="0") public static final GetType ALL
@SerializedName(value="1") public static final GetType TEXT
@SerializedName(value="2") public static final GetType ARCHIVE
@SerializedName(value="3") public static final GetType GIF
@SerializedName(value="4") public static final GetType IMAGE
@SerializedName(value="5") public static final GetType AUDIO
@SerializedName(value="6") public static final GetType VIDEO
@SerializedName(value="7") public static final GetType EBOOK
@SerializedName(value="8") public static final GetType DEFAULT
public static GetType[] values()
for (GetType c : GetType.values()) System.out.println(c);
public static GetType 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<GetType>