All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zzlhy.util.Lists Maven / Gradle / Ivy

package com.github.zzlhy.util;

import java.util.ArrayList;
import java.util.Collections;

/**
 * Created by Administrator on 2018-10-20.
 */
public class Lists {
    public static  ArrayList newArrayList(E... elements) {
        if(elements == null){
            throw new NullPointerException();
        }
        ArrayList list = new ArrayList();
        Collections.addAll(list, elements);
        return list;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy