The player state when the video is paused.
Constructors
PausedState(videoController:
VideoController)
Instance Methods
Defined in: com.google.ads.studio.video:AbstractPlayerState
getStateType()
:
String
Returns the player state as a string such as "InitialState"
,
"BufferingState"
, "LoadingState"
,
"PausedState"
, "PlayingState"
, or
"StoppedState"
. It is encouraged to use
videoController.getPlayerState()
and match against the
relevant class using instanceof
or is
.
pause(alwaysPause:Boolean=false)
:
AbstractPlayerState
The pause command implementation for the current state.
play()
:
AbstractPlayerState
The play command implementation for the current state.
seek(time:Number)
:
AbstractPlayerState
The seek command implementation for the current state.
stop()
:
AbstractPlayerState
The stop command implementation for the current state.
Defined in com.google.ads.studio.video:PausedState
pause(alwaysPause:Boolean=false)
:
AbstractPlayerState
The pause command implementation for the current state.
play()
:
AbstractPlayerState
The play command implementation for the current state.
seek(time:Number)
:
AbstractPlayerState
The seek command implementation for the current state.
stop()
:
AbstractPlayerState
The stop command implementation for the current state.