In the v3 API I could do something like:
String listFeedUrl = (new URI(worksheet.getListFeedUrl().toString())).toURL();
ListQuery lq = new ListQuery(listFeedUrl);
lq.setOrderBy("column:name");
lq.setReverse(false);
ListFeed lf = spreadsheetService.query(lq, ListFeed.class);
In v4 I'm not seeing an equivalent. What is the recommended way to get sorted cell data? Is my only choice to sort it once it's returned?