Searched refs:sortString (Results 1 – 2 of 2) sorted by relevance
46 public static SortSpec fromString(String sortString) { in fromString() argument47 if (sortString.charAt(0) == '-') { in fromString()48 return new SortSpec(sortString.substring(1), SortDirection.DESCENDING); in fromString()50 return new SortSpec(sortString, SortDirection.ASCENDING); in fromString()
493 private void handleSortString(String sortString) { in handleSortString() argument495 String[] components = sortString.split(","); in handleSortString()