HashSet: addAll(Collection c) : HashSet « java.util « Java by API






HashSet: addAll(Collection c)

 
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

public class Main {

  public static void main(String[] a) {
    String elements[] = { "A", "B", "C", "D", "E" };
    Set<String> set = new HashSet<String>(Arrays.asList(elements));

    elements = new String[] { "E", "F" };

    set.addAll(Arrays.asList(elements));

    System.out.println(set);
  }
}

   
  








Related examples in the same category

1.new HashSet < E > ()
2.new HashSet(Collection c)
3.HashSet: add(E o)
4.HashSet: clear()
5.HashSet: clone()
6.HashSet: contains(Object o)
7.HashSet: containsAll(Collection c)
8.HashSet: isEmpty()
9.HashSet: iterator()
10.HashSet: removeAll(Collection c)
11.HashSet: size()
12.HashSet: toArray()