Package eu.webtoolkit.jwt
Enum Class MediaPlayerButtonId
- All Implemented Interfaces:
Serializable
,Comparable<MediaPlayerButtonId>
,Constable
An enumeration for a button function.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionToggle button for full screen, is hidden while full screen (for Video only)Pause button, is hidden while paused.Play button, is hidden while playing.Toggle button to disable looping, is hidden while repeat is offToggle button to enable looping, is hidden while repeating is onToggle button to restore the screen, is shown only in full screen (for Video only)Stop button.Play button which overlays the video (for Video only)Volume max button.Volume mute button.Volume unmute button. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the numerical representation of this enum.static MediaPlayerButtonId
Returns the enum constant of this class with the specified name.static MediaPlayerButtonId[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VideoPlay
Play button which overlays the video (for Video only) -
Play
Play button, is hidden while playing. -
Pause
Pause button, is hidden while paused. -
Stop
Stop button. -
VolumeMute
Volume mute button. -
VolumeUnmute
Volume unmute button. -
VolumeMax
Volume max button. -
FullScreen
Toggle button for full screen, is hidden while full screen (for Video only) -
RestoreScreen
Toggle button to restore the screen, is shown only in full screen (for Video only) -
RepeatOn
Toggle button to enable looping, is hidden while repeating is on -
RepeatOff
Toggle button to disable looping, is hidden while repeat is off
-
-
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
-
getValue
public int getValue()Returns the numerical representation of this enum.
-