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