Android Utililty Methods Collection Append

List of utility methods to do Collection Append

Description

The list of methods to do Collection Append are organized into topic(s).

Method

voidAppend(Collection collection, T[] array)
Append
if (collection != null && array != null && array.length > 0) {
    for (T element : array) {
        collection.add(element);
voidAppend(Collection collection, T[][] array_array)
Append
if (collection != null && array_array != null
        && array_array.length > 0) {
    for (T[] array : array_array) {
        Append(collection, array);