I have a list of integers (currently using cern.colt.list.IntArrayList). I can call \"shuffle()\" and randomly shuffle them. I would like to be able to reproduce a shuffle.
This is possible by using the shuffle method that allows you to provide the backing Random instance: Collections.shuffle(List> list, Random rnd):
Random
Example:
Collections.shuffle(yourList, new Random(somePredefinedSeed));