Java tutorial
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { /** * Delete item in <code>list</code> from position <code>indexFrom</code> and insert it to <code>indexTwo</code> * * @param list * @param indexFrom * @param indexTwo */ public static void reorder(List list, int indexFrom, int indexTwo) { Object obj = list.remove(indexFrom); list.add(indexTwo, obj); } }