I have a Java list of objects which periodically is cleared then reloaded with updated versions of the objects from a database. Before reloading, the user may have chosen to order the list in a certain way. I need to find an algorithm which applies the order of the previous list to the fresh list.
I cannot use Comparator as the object may effectively be in a random order.
Here is my method stub:
public static List<RetrievedPage> copyPreviousListOrderToFreshList(List<RetrievedPage> previousCopyOfList, List<RetrievedPage> freshCopyOfList)
{
for (RetrievedPage retrievedPage : previousCopyOfList)
{
//reordering, but how?
}
return freshCopyOfList;
}
Thanks in advance, Barry