Java Collection Add addAll(Collection collection, T[] array)

Here you can find the source of addAll(Collection collection, T[] array)

Description

add All

License

Open Source License

Declaration

public static <T> void addAll(Collection<T> collection, T[] array) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.util.Collection;

public class Main {
    public static <T> void addAll(Collection<T> target, Iterable<? extends T> source) {
        for (T e : source)
            target.add(e);/*w  w w  .  j  av a  2 s .  c om*/
    }

    public static <T> void addAll(Collection<T> collection, T[] array) {
        for (int i = 0; i < array.length; ++i)
            collection.add(array[i]);
    }
}

Related

  1. addAll(Collection collection, Iterable items)
  2. addAll(Collection collection, T... array)
  3. addAll(Collection collection, T... elementsToAdd)
  4. addAll(Collection collection, T... elementsToAdd)
  5. addAll(Collection collection, T... newElements)
  6. addAll(Collection collection, T[] array)
  7. addAll(Collection collection, T[] items)
  8. addAll(Collection dest, Collection src, Class type)
  9. addAll(Collection dest, Collection orig)