So sortieren Sie die ArrayList, ohne die ursprüngliche ArrayList zu ändern

ArrayList<String> original = new ArrayList<>();
ArrayList<String> copy = new ArrayList<>(original);
copy.sort(Comparator.naturalOrder());
Blue-eyed Barracuda