Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save washingtonsoares/4861398bce698d2e007ab5eef931c14e to your computer and use it in GitHub Desktop.
Save washingtonsoares/4861398bce698d2e007ab5eef931c14e to your computer and use it in GitHub Desktop.
Collections.sort(savedClientSectors, new Comparator<ClientSector>() {
@Override
public int compare(ClientSector o1, ClientSector o2) {
return o1.getName().compareTo(o2.getName());
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment