Class LongArray
- java.lang.Object
-
- com.google.android.exoplayer2.util.LongArray
-
@Deprecated public final class LongArray extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.An append-only, auto-growinglong[].
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(long value)Deprecated.Appends a value.longget(int index)Deprecated.Returns the value at a specified index.intsize()Deprecated.Returns the current size of the array.long[]toArray()Deprecated.Copies the current values into a newly allocated primitive array.
-
-
-
Method Detail
-
add
public void add(long value)
Deprecated.Appends a value.- Parameters:
value- The value to append.
-
get
public long get(int index)
Deprecated.Returns the value at a specified index.- Parameters:
index- The index.- Returns:
- The corresponding value.
- Throws:
IndexOutOfBoundsException- If the index is less than zero, or greater than or equal tosize().
-
size
public int size()
Deprecated.Returns the current size of the array.
-
toArray
public long[] toArray()
Deprecated.Copies the current values into a newly allocated primitive array.- Returns:
- The primitive array containing the copied values.
-
-