| Enum Constant and Description |
|---|
LIVE |
MOVIE |
MUSIC_VIDEO |
SHORT_VIDEO |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static VideoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="video") public static final VideoType VIDEO
@SerializedName(value="music_video") public static final VideoType MUSIC_VIDEO
@SerializedName(value="movie") public static final VideoType MOVIE
@SerializedName(value="live") public static final VideoType LIVE
@SerializedName(value="short_video") public static final VideoType SHORT_VIDEO
public static VideoType[] values()
for (VideoType c : VideoType.values()) System.out.println(c);
public static VideoType 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<VideoType>