Class TrackSelectionArray
- java.lang.Object
-
- com.google.android.exoplayer2.trackselection.TrackSelectionArray
-
public final class TrackSelectionArray extends Object
An array ofTrackSelection
s.
-
-
Field Summary
Fields Modifier and Type Field Description int
length
The length of this array.
-
Constructor Summary
Constructors Constructor Description TrackSelectionArray(@NullableType TrackSelection... trackSelections)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
TrackSelection
get(int index)
Returns the selection at a given index.@NullableType TrackSelection[]
getAll()
Returns the selections in a newly allocated array.int
hashCode()
-
-
-
Constructor Detail
-
TrackSelectionArray
public TrackSelectionArray(@NullableType TrackSelection... trackSelections)
- Parameters:
trackSelections
- The selections. Must not be null, but may contain null elements.
-
-
Method Detail
-
get
@Nullable public TrackSelection get(int index)
Returns the selection at a given index.- Parameters:
index
- The index of the selection.- Returns:
- The selection.
-
getAll
public @NullableType TrackSelection[] getAll()
Returns the selections in a newly allocated array.
-
-