Hello List,

I am sorting a to-many list in memory:

    List<RegistryEnrollment> re = getEnrollments();
    Ordering ordering = new Ordering("year", true);
    ordering.orderList(re);
    return re;

But I would like to add a second sort criteria (month after year)

I found there were expressions, but no example for formatting them.

Thanks,

Alex

--
Alexander Lamb
[EMAIL PROTECTED]



Reply via email to