Adds all items to the list.
public void addItems( Object[] items )
public void addItems( Object[] items, int src, int count )
public void addItems( List list )
public void addItems( List list, int src, int count )
items
The array of items to add to the list.
src
The index in the items parameter to start adding items from.
count
The number of items to add.
list
The list of items to add to the list.
WFCInvalidArgumentException thrown if upper or lower bounds of the index or count are exceeded.
If the capacity of the list is exceeded, it automatically doubles in size.