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