I have list of Joda-Time Interval objects.
List intervals = new ArrayList();
How can I sort the intervals o
In your special case, collect the start instants using
interval.getStart()
in another list. DateTime using the Comparable interface which makes the list sortable using Collections.sort(..).
DateTime
Comparable
Collections.sort(..)