Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.util.Arrays;

import java.util.List;

import java.util.stream.Collectors;

public class Main {
    public static <T> List<T> arrayToList(T[] array) {
        return Arrays.stream(array).collect(Collectors.toList());//NOSONAR: This stream doesn't need to be closed
    }
}