Enum AbrStrategyType
-
- All Implemented Interfaces:
public enum AbrStrategyType
The adaptive bitrate strategy of the first segment.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PERFORMANCE
The player will optimize ABR behavior to focus on the performance of the player. This strategy initiates playback with the lowest quality suitable for the device which means faster start-up time.
QUALITY
The player will optimize ABR behavior to focus displaying the best visual quality to the end-user. This strategy initiates playback with the highest bit rate suitable for the device.
BANDWIDTH
The player will optimize the ABR behavior to focus on displaying the most optimal quality based on historic data of available bandwidth and knowledge of the network conditions.
-
Method Summary
Modifier and Type Method Description static Array<AbrStrategyType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static AbrStrategyType
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<AbrStrategyType> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static AbrStrategyType valueOf(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.)
- Returns:
the enum constant with the specified name
-
-
-
-