213214215216217218219220221222223
String[] parts = sortItem.split(":"); String property = parts[0]; String direction = parts.length > 1 ? parts[1] : "ASC"; String root = parts.length > 2 ? parts[2] : null; config.sort(property, direction, root); } } /* * Buffering
211212213214215216217218219220221