Java Iterable to List toList(Iterable items)

Here you can find the source of toList(Iterable items)

Description

Create a list out of the items in the Iterable.

License

Open Source License

Parameter

Parameter Description
T The type of items in the Iterable.
items The items to be made into a list.

Return

A list consisting of the items of the Iterable, in the same order.

Declaration

public static <T> List<T> toList(Iterable<T> items) 

Method Source Code

//package com.java2s;

import java.util.*;

public class Main {
    /**//from w  w w  .j a v a2  s.c  om
     * Create a list out of the items in the Iterable.
     *
     * @param <T> The type of items in the Iterable.
     * @param items The items to be made into a list.
     * @return A list consisting of the items of the Iterable, in the same order.
     */
    public static <T> List<T> toList(Iterable<T> items) {
        List<T> list = new ArrayList<>();
        addAll(list, items);
        return list;
    }

    /**
     * Add all the items from an iterable to a collection.
     *
     * @param <T> The type of items in the iterable and the collection
     * @param collection The collection to which the items should be added.
     * @param items The items to add to the collection.
     */
    public static <T> void addAll(Collection<T> collection, Iterable<? extends T> items) {
        for (T item : items) {
            collection.add(item);
        }
    }
}

Related

  1. toList(Iterable values)
  2. toList(Iterable protocols)
  3. toList(Iterable elements)
  4. ToList(Iterable inList)
  5. toList(Iterable it)
  6. toList(Iterable iter)
  7. toList(Iterable iterable)
  8. toList(Iterable iterable)
  9. toList(Iterable iterable)