Home | History | Annotate | Download | only in file

Lines Matching defs:sort

45         /** sort by type only */
48 /** sort in class-major order, with instances sorted per-class */
69 /** {@code non-null;} how to sort the items */
70 private final SortType sort;
86 * @param sort how the items should be sorted in the final output
89 SortType sort) {
94 this.sort = sort;
296 switch (sort) {
298 Collections.sort(items);
302 Collections.sort(items, TYPE_SORTER);