| Enum Constant and Description |
|---|
APP |
COMMUNITY_APP |
GAME |
HTML5_GAME |
MINI_APP |
SITE |
STANDALONE |
VK_APP |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static AppType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="app") public static final AppType APP
@SerializedName(value="game") public static final AppType GAME
@SerializedName(value="site") public static final AppType SITE
@SerializedName(value="standalone") public static final AppType STANDALONE
@SerializedName(value="vk_app") public static final AppType VK_APP
@SerializedName(value="community_app") public static final AppType COMMUNITY_APP
@SerializedName(value="html5_game") public static final AppType HTML5_GAME
@SerializedName(value="mini_app") public static final AppType MINI_APP
public static AppType[] values()
for (AppType c : AppType.values()) System.out.println(c);
public static AppType 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<AppType>