Enum ControlPanelElementType
- java.lang.Object
-
- java.lang.Enum<ControlPanelElementType>
-
- org.teamapps.ux.component.media.shaka.ControlPanelElementType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ControlPanelElementType>
public enum ControlPanelElementType extends java.lang.Enum<ControlPanelElementType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAST_FORWARDFULLSCREENMUTEOVERFLOW_MENUPLAY_PAUSEREWINDSKIP_BACKSKIP_FORWARDSPACERTIME_AND_DURATIONVOLUME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ControlPanelElementTypefromUiControlPanelElementType(org.teamapps.dto.UiShakaPlayerControlPanelElementType type)org.teamapps.dto.UiShakaPlayerControlPanelElementTypetoUiShakaPlayerControlPanelElementType()static ControlPanelElementTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ControlPanelElementType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REWIND
public static final ControlPanelElementType REWIND
-
FAST_FORWARD
public static final ControlPanelElementType FAST_FORWARD
-
SKIP_BACK
public static final ControlPanelElementType SKIP_BACK
-
SKIP_FORWARD
public static final ControlPanelElementType SKIP_FORWARD
-
PLAY_PAUSE
public static final ControlPanelElementType PLAY_PAUSE
-
TIME_AND_DURATION
public static final ControlPanelElementType TIME_AND_DURATION
-
SPACER
public static final ControlPanelElementType SPACER
-
MUTE
public static final ControlPanelElementType MUTE
-
VOLUME
public static final ControlPanelElementType VOLUME
-
FULLSCREEN
public static final ControlPanelElementType FULLSCREEN
-
OVERFLOW_MENU
public static final ControlPanelElementType OVERFLOW_MENU
-
-
Method Detail
-
values
public static ControlPanelElementType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ControlPanelElementType c : ControlPanelElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ControlPanelElementType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromUiControlPanelElementType
public static ControlPanelElementType fromUiControlPanelElementType(org.teamapps.dto.UiShakaPlayerControlPanelElementType type)
-
toUiShakaPlayerControlPanelElementType
public org.teamapps.dto.UiShakaPlayerControlPanelElementType toUiShakaPlayerControlPanelElementType()
-
-