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

com.google.android.collect.Lists Maven / Gradle / Ivy

package com.google.android.collect;

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

public class Lists {
    public Lists() {
    }

    public static  ArrayList newArrayList() {
        return new ArrayList();
    }

    public static  ArrayList newArrayList(E... elements) {
        int capacity = elements.length * 110 / 100 + 5;
        ArrayList list = new ArrayList(capacity);
        Collections.addAll(list, elements);
        return list;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy