ArrayList.this

Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.

@param c the collection whose elements are to be placed into this list @throws NullPointerException if the specified collection is null

  1. this(int initialCapacity)
  2. this()
  3. this(E[] arr)
    class ArrayList(E)
    this
    (
    E[] arr
    )
  4. this(Collection!E c)

Meta