public static enum POBVideoPlayer.VideoPlayerState extends java.lang.Enum<POBVideoPlayer.VideoPlayerState>
| Enum Constant and Description |
|---|
COMPLETE
Video player completes the video playing
|
ERROR
Video player state error
|
LOADED
Video player state loaded
|
PAUSED
Video player state paused
|
PLAYING
Video player state playing
|
STOPPED
Video player state stopped
|
UNKNOWN
Video player state unknown
|
| Modifier and Type | Method and Description |
|---|---|
static POBVideoPlayer.VideoPlayerState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static POBVideoPlayer.VideoPlayerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final POBVideoPlayer.VideoPlayerState UNKNOWN
public static final POBVideoPlayer.VideoPlayerState LOADED
public static final POBVideoPlayer.VideoPlayerState PLAYING
public static final POBVideoPlayer.VideoPlayerState PAUSED
public static final POBVideoPlayer.VideoPlayerState STOPPED
public static final POBVideoPlayer.VideoPlayerState COMPLETE
public static final POBVideoPlayer.VideoPlayerState ERROR
public static POBVideoPlayer.VideoPlayerState[] values()
for (POBVideoPlayer.VideoPlayerState c : POBVideoPlayer.VideoPlayerState.values()) System.out.println(c);
public static POBVideoPlayer.VideoPlayerState 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