Android Utililty Methods List Swap

List of utility methods to do List Swap

Description

The list of methods to do List Swap are organized into topic(s).

Method

voidswap(List list, int i, int j)
swap
E tmp = list.get(i);
list.set(i, list.get(j));
list.set(j, tmp);