List of utility methods to do List Value Add All
void | addAll(ArrayList add All if (array == null) { return; list.addAll(Arrays.asList(array)); |
void | addAll(final List Add all elements in an array to a list for (final E value : values) { list.add(value); |
List | addAll(final List add All final List<T> result = new ArrayList<>(firstList); result.addAll(secondList); return result; |
void | addAll(final List add All for (final T element : elements) { list.add(element); |
List | addAll(int index, List Add arrays members to list starting at index. for (T item : array) { list.add(index++, item); return list; |
List | addAll(List dest, List src) add All return addAll(dest, src, true);
|
void | addAll(List fromList, List toList) add All addAll(fromList, toList, false); |
void | addAll(List Add all of the elements in the given array to the given list. int count = elements.length; for (int i = 0; i < count; i++) { list.add(elements[i]); |
void | addAll(List Adds all items in the specific array to the specific list. for (String item : array)
list.add(item);
|
boolean | addAll(List add All return addElements(list, array);
|