Method addAll(int index, Collection extends E> c)
Return type: boolean
Member of:
java.util.List
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
l.addAll(0, Arrays.asList(arr));
2
names.addAll(0, addNamesList);
3
getList().addAll(0, Arrays.asList(getOtherElements()));
4
dest.addAll(1,source);
5
_dates.addAll(0, moreDates);
6
dataList.addAll(row, a);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.