public static final enum

Player.State

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.amazonaws.ivs.player.Player.State

Class Overview

Represents the current state of a player instance.

Summary

Enum Values
Player.State  BUFFERING  Indicates that the Player is buffering content. 
Player.State  ENDED  Indicates that the Player reached the end of the stream. 
Player.State  IDLE  Indicates that the Player is idle. 
Player.State  PLAYING  Indicates that the Player is playing. 
Player.State  READY  Indicates that the Player is ready to play the loaded source. 
Public Methods
static Player.State valueOf(String name)
final static State[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Player.State BUFFERING

Indicates that the Player is buffering content.

public static final Player.State ENDED

Indicates that the Player reached the end of the stream.

public static final Player.State IDLE

Indicates that the Player is idle. This is the initial state.

public static final Player.State PLAYING

Indicates that the Player is playing.

public static final Player.State READY

Indicates that the Player is ready to play the loaded source.

Public Methods

public static Player.State valueOf (String name)

public static final State[] values ()