Class LongArray
- java.lang.Object
-
- com.google.android.exoplayer2.util.LongArray
-
public final class LongArray extends Object
An append-only, auto-growinglong[].
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(long value)Appends a value.longget(int index)Returns the value at a specified index.intsize()Returns the current size of the array.long[]toArray()Copies the current values into a newly allocated primitive array.
-
-
-
Method Detail
-
add
public void add(long value)
Appends a value.- Parameters:
value- The value to append.
-
get
public long get(int index)
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()
Returns the current size of the array.
-
toArray
public long[] toArray()
Copies the current values into a newly allocated primitive array.- Returns:
- The primitive array containing the copied values.
-
-