public enum VideoStartReason extends java.lang.Enum<VideoStartReason>
| Enum Constant and Description |
|---|
AUTO_STARTED |
NOT_STARTED |
USER_STARTED |
| Modifier and Type | Method and Description |
|---|---|
static VideoStartReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoStartReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoStartReason NOT_STARTED
public static final VideoStartReason USER_STARTED
public static final VideoStartReason AUTO_STARTED
public static VideoStartReason[] values()
for (VideoStartReason c : VideoStartReason.values()) System.out.println(c);
public static VideoStartReason 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 null