Java tutorial
//package com.java2s; /* * DuDe - The Duplicate Detection Toolkit * * Copyright (C) 2010 Hasso-Plattner-Institut fr Softwaresystemtechnik GmbH, * Potsdam, Germany * * This file is part of DuDe. * * DuDe 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. * * DuDe 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 DuDe. If not, see <http://www.gnu.org/licenses/>. * */ import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class Main { /** * Materializes the elements of the given {@link Iterator} into a {@link List}. * * @param <T> * the element type * @param iterator * the {@link Iterator} to materialize * @return the {@link List} containing the materialized elements. */ public static <T> List<T> asList(Iterator<T> iterator) { ArrayList<T> list = new ArrayList<T>(); while (iterator.hasNext()) list.add(iterator.next()); return list; } }