@Deprecated public enum VideoAutoplayBehavior extends java.lang.Enum<VideoAutoplayBehavior>
DEFAULT - The server did not specify an override. ON - The server determined that the video should autoplay. OFF - The server determined that the video should not autoplay.
| Enum Constant and Description |
|---|
DEFAULT
Deprecated.
|
OFF
Deprecated.
|
ON
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static VideoAutoplayBehavior |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static VideoAutoplayBehavior[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoAutoplayBehavior DEFAULT
public static final VideoAutoplayBehavior ON
public static final VideoAutoplayBehavior OFF
public static VideoAutoplayBehavior[] values()
for (VideoAutoplayBehavior c : VideoAutoplayBehavior.values()) System.out.println(c);
public static VideoAutoplayBehavior 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