Enum VisualQualityEvent.Reason
- java.lang.Object
-
- java.lang.Enum<VisualQualityEvent.Reason>
-
- com.longtailvideo.jwplayer.events.VisualQualityEvent.Reason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VisualQualityEvent.Reason>
- Enclosing class:
- VisualQualityEvent
public static enum VisualQualityEvent.Reason extends java.lang.Enum<VisualQualityEvent.Reason>
The reason why a quality switch occurred. The reason may not always be available for HLS.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VisualQualityEvent.Reason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VisualQualityEvent.Reason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIAL
public static final VisualQualityEvent.Reason INITIAL
The initial quality level, picked by the JW Player.
-
AUTO
public static final VisualQualityEvent.Reason AUTO
An automatic quality change occurred.
-
API
public static final VisualQualityEvent.Reason API
The user chose a static quality after playback began, or an API was used to set it.
-
UNKNOWN
public static final VisualQualityEvent.Reason UNKNOWN
The reason is unknown.
-
-
Method Detail
-
values
public static VisualQualityEvent.Reason[] 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 (VisualQualityEvent.Reason c : VisualQualityEvent.Reason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VisualQualityEvent.Reason 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
-
-