public enum StreamingPlatform extends java.lang.Enum<StreamingPlatform>
| Enum Constant and Description |
|---|
ANDROID |
DESKTOP_SITE |
IPAD |
IPHONE |
MOBILE_SITE |
OTHER |
WINDOWS_8 |
WINDOWS_PHONE |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static StreamingPlatform |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StreamingPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="1") public static final StreamingPlatform MOBILE_SITE
@SerializedName(value="2") public static final StreamingPlatform IPHONE
@SerializedName(value="3") public static final StreamingPlatform IPAD
@SerializedName(value="4") public static final StreamingPlatform ANDROID
@SerializedName(value="5") public static final StreamingPlatform WINDOWS_PHONE
@SerializedName(value="6") public static final StreamingPlatform WINDOWS_8
@SerializedName(value="7") public static final StreamingPlatform DESKTOP_SITE
@SerializedName(value="8") public static final StreamingPlatform OTHER
public static StreamingPlatform[] values()
for (StreamingPlatform c : StreamingPlatform.values()) System.out.println(c);
public static StreamingPlatform 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 int getValue()