Here you can find the source of reversedCopy(List
public static <T> void reversedCopy(List<T> src, List<T> dest)
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { public static <T> void reversedCopy(List<T> src, List<T> dest) { dest.clear();/*from www.j av a2s . c o m*/ for (T e : src) { dest.add(0, e); } } }