Package com.ooyala.pulse
Enum Class PlayerState
- All Implemented Interfaces:
Serializable
,Comparable<PlayerState>
,Constable
List of supported video event player states.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe player has been reduced from its original size.The player has expanded from its original size.The player has entered fullscreen mode.The player is collapsed in such a way that the video is hidden.The player's default playback size. -
Method Summary
Modifier and TypeMethodDescriptionstatic PlayerState
Returns the enum constant of this class with the specified name.static PlayerState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
MINIMIZED
The player is collapsed in such a way that the video is hidden. The video may or may not still be progressing in this state, and sound may be audible. This refers specifically to the video player state on the page, and not the state of the browser window. -
COLLAPSED
The player has been reduced from its original size. The video is still potentially visible. -
NORMAL
The player's default playback size. -
EXPANDED
The player has expanded from its original size. -
FULLSCREEN
The player has entered fullscreen mode.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-