Java Iterable to List toList(Iterable elements)

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

Description

to List

License

Open Source License

Declaration

public static <T2, T1 extends T2> List<T2> toList(Iterable<T1> elements) 

Method Source Code


//package com.java2s;
/*/*from   ww  w .j a v a2 s  .com*/
 * Copyright (c) 2012 Rice University.
 *
 * This file is part of PhyloNet.
 *
 * PhyloNet is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * PhyloNet is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with PhyloNet.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.*;

public class Main {
    public static <T2, T1 extends T2> List<T2> toList(Iterable<T1> elements) {
        List<T2> result = new LinkedList<T2>();

        for (T1 element : elements) {
            result.add(element);
        }
        return result;
    }
}

Related

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