Package com.castlabs.android.player
Enum CatchupConfiguration.Type
- All Implemented Interfaces:
Serializable
,Comparable<CatchupConfiguration.Type>
- Enclosing class:
CatchupConfiguration
Represents the catchup strategy. This is the mechanism the player will use to catch up
to the target position.
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic CatchupConfiguration.Type
Returns the enum constant of this type with the specified name.static CatchupConfiguration.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
Do nothing. Disabled. -
SPEED
Speed up/down. The player will change it's own speed toCatchupConfiguration.speedCoefficient
whenever thedistance to the media end
orthe buffer size ahead
is greater thanupperTimeThresholdMs
. Speed will return to 1 whenlowerTimeThresholdMs
is reached. Additionally, as a fallback mechanism, the player will automatically snap (continuously seek) if the position falls behindfallbackTimeThresholdMs
. -
SEEK
Perform a seek operation. The player will automatically seek tolowerTimeThresholdMs
whenever thedistance to the media end
orthe buffer size ahead
is greater thanupperTimeThresholdMs
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-