Class TrackSelectionArray
- java.lang.Object
-
- com.google.android.exoplayer2.trackselection.TrackSelectionArray
-
public final class TrackSelectionArray extends Object
An array ofTrackSelections.
-
-
Field Summary
Fields Modifier and Type Field Description intlengthThe 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 booleanequals(Object obj)TrackSelectionget(int index)Returns the selection at a given index.@NullableType TrackSelection[]getAll()Returns the selections in a newly allocated array.inthashCode()
-
-
-
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.
-
-