public enum AbrStrategyType extends Enum<AbrStrategyType>
Enum Constant and Description |
---|
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.
|
PERFORMANCE
The player will optimize ABR behavior to focus on the performance of the player.
|
QUALITY
The player will optimize ABR behavior to focus displaying the best visual quality to the end-user.
|
Modifier and Type | Method and Description |
---|---|
static AbrStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbrStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbrStrategyType PERFORMANCE
public static final AbrStrategyType QUALITY
public static final AbrStrategyType BANDWIDTH
public static AbrStrategyType[] values()
for (AbrStrategyType c : AbrStrategyType.values()) System.out.println(c);
public static AbrStrategyType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null