Utilisez comme ça. Voici la compilation en ligne du code. Jetez un coup d'oeil http://ideone.com/MJJwtc
public static void swap(List list,
int i,
int j)
Intervertit les éléments aux positions spécifiées dans la liste spécifiée. (Si les positions spécifiées sont égales, l'invocation de cette méthode laisse la liste inchangée).
P list - La liste dans laquelle il faut échanger les éléments. i - l'index d'un élément à échanger. j - l'index de l'autre élément à échanger.
Lire les documents officiels de la collecte
http://docs.oracle.com/javase/7/docs/api/java/util/Collections.html#swap%28java.util.List,%20int,%20int%29
import java.util.*;
import java.lang.*;
class Main {
public static void main(String[] args) throws java.lang.Exception
{
//create an ArrayList object
ArrayList words = new ArrayList();
//Add elements to Arraylist
words.add("A");
words.add("B");
words.add("C");
words.add("D");
words.add("E");
System.out.println("Before swaping, ArrayList contains : " + words);
/*
To swap elements of Java ArrayList use,
static void swap(List list, int firstElement, int secondElement)
method of Collections class. Where firstElement is the index of first
element to be swapped and secondElement is the index of the second element
to be swapped.
If the specified positions are equal, list remains unchanged.
Please note that, this method can throw IndexOutOfBoundsException if
any of the index values is not in range. */
Collections.swap(words, 0, words.size() - 1);
System.out.println("After swaping, ArrayList contains : " + words);
}
}
Exemple de compilation en ligne http://ideone.com/MJJwtc