Class 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-growing long[].
    • Constructor Detail

      • LongArray

        public LongArray()
        Deprecated.
      • LongArray

        public LongArray​(int initialCapacity)
        Deprecated.
        Parameters:
        initialCapacity - The initial capacity of the 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 to size().
      • 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.