Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.util.*;

public class Main {
    public static <T> List<T> toList(Iterator<T> it) {
        List<T> result = new ArrayList<T>();
        while (it.hasNext())
            result.add(it.next());
        return result;
    }
}