Java List.addAll(int index, Collection <? extends E > c)

Syntax

List.addAll(int index, Collection <? extends E > c) has the following syntax.

boolean addAll(int index,  Collection <? extends E > c)

Example

In the following code shows how to use List.addAll(int index, Collection <? extends E > c) method.


//ww  w. j a v a  2  s. com
import java.util.ArrayList;
import java.util.List;

public class Main {
  public static void main(String args[]) throws Exception {

    List<String> list = new ArrayList<String>();
    list.add("A");
    list.add("B");
    list.add("C");
    List<String> list2 = new ArrayList<String>();
    list2.add("X");
    list2.add("Y");
    list2.add("Z");
    list.addAll(list2);
    list.addAll(1, list2);

    System.out.println(list);
  }
}

The code above generates the following result.