blob: 7785bc3c5fe273f9921159c389510e1b072b3b2f [file] [log] [blame]
/*
* Copyright (c) 2015 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.net4j.util.collection;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* Various static helper methods.
*
* @author Eike Stepper
* @since 3.5
*/
public final class CollectionUtil
{
private CollectionUtil()
{
}
public static <T> Iterator<T> dump(Iterator<T> it)
{
List<T> list = new ArrayList<T>();
while (it.hasNext())
{
list.add(it.next());
}
System.out.println(list);
return list.iterator();
}
}