Package org.testng.collections
Class Lists
- java.lang.Object
-
- org.testng.collections.Lists
-
public final class Lists extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <K> List<K>newArrayList()static <K> List<K>newArrayList(int size)static <K> List<K>newArrayList(Collection<K> c)static <K> List<K>newArrayList(K... elements)static <K> List<K>newLinkedList()static <K> List<K>newLinkedList(Collection<K> c)
-
-
-
Method Detail
-
newArrayList
public static <K> List<K> newArrayList()
-
newLinkedList
public static <K> List<K> newLinkedList()
-
newLinkedList
public static <K> List<K> newLinkedList(Collection<K> c)
-
newArrayList
public static <K> List<K> newArrayList(Collection<K> c)
-
newArrayList
public static <K> List<K> newArrayList(K... elements)
-
newArrayList
public static <K> List<K> newArrayList(int size)
-
-