SeekMode
enum SeekMode : Parcelable, Enum<SeekMode>
Represents the mode the player uses to seek.
Entries
| Exact | Exact For exact seeking. |
| ClosestSync | ClosestSync For seeking to the closest sync point. |
| PreviousSync | PreviousSync For seeking to the sync point immediately before a requested seek position. |
| NextSync | NextSync For seeking to the sync point immediately after a requested seek position. |
Properties
| Name | Summary |
|---|---|
| entries | val entries: EnumEntries<SeekMode> Returns a representation of an immutable list of all enum entries, in the order they're declared. |
Functions
| Name | Summary |
|---|---|
| valueOf | fun valueOf(value: String): SeekMode 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.) |
| values | fun values(): Array<SeekMode> Returns an array containing the constants of this enum type, in the order they're declared. |