public enum VideoPlayerEvent extends java.lang.Enum<VideoPlayerEvent>
| Enum Constant and Description |
|---|
COMPLETED |
GENERIC_ERROR |
ILLEGAL_STATE |
INFO |
PAUSE |
PAUSE_ERROR |
PLAY |
PREPARE_ERROR |
PREPARE_TIMEOUT |
PREPARED |
PROGRESS |
SEEKTO |
SEEKTO_ERROR |
STOP |
| Modifier and Type | Method and Description |
|---|---|
static VideoPlayerEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoPlayerEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoPlayerEvent GENERIC_ERROR
public static final VideoPlayerEvent PROGRESS
public static final VideoPlayerEvent INFO
public static final VideoPlayerEvent COMPLETED
public static final VideoPlayerEvent PREPARED
public static final VideoPlayerEvent PREPARE_ERROR
public static final VideoPlayerEvent PREPARE_TIMEOUT
public static final VideoPlayerEvent PLAY
public static final VideoPlayerEvent PAUSE_ERROR
public static final VideoPlayerEvent PAUSE
public static final VideoPlayerEvent SEEKTO_ERROR
public static final VideoPlayerEvent SEEKTO
public static final VideoPlayerEvent STOP
public static final VideoPlayerEvent ILLEGAL_STATE
public static VideoPlayerEvent[] values()
for (VideoPlayerEvent c : VideoPlayerEvent.values()) System.out.println(c);
public static VideoPlayerEvent 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