From a clean code perspective, if these belong together, and this structure can be reused somewhere else, you should create a class out of them, and make it implement Comparable :
public SomeClass implements Comparable<SomeClass> {
private Integer id;
private String name;
private Whatever elseIsNeededHere;
/* getters'n'setters*/
// ******** THOU SHALT NEVER FORGET THY FRIENDS, EQUALS AND HASHCODE, OR ELSE THEY TURN TO BE THY FOES ********
@Override
public boolean equals(Object other) { //do what it takes }
@Override
public int hashCode() { //do what it takes! }
/* actually implement Comparable */
@Override
public int compareTo(SomeClass o) {
//null check, and other bloat left out for sake of brevity
return this.id.compareTo(o.getId());
}
}
Then you can have a single list containing what belongs together, and sort it really nicely:
ArrayList<SomeClass> myList = getMyData();
Collections.sort(myList);
And the myList list instance is sorted the way you wanted.
If you want different comparation methods, you can use the other way, by using Comparators:
Collections.sort(myList,new Comparator<SomeClass>() {
public int compare(SomeClass a, SomeClass b) { // do what it takes }
});