So the question is, which is the least worst of:
.setOrder(List.of(asc(Book_.isbn), desc(Book_.title)))
And:
.setOrder(by().asc(Book_.isbn).desc(Book_.title))
The first uses a regular Java List. The second uses a special-purpose linked list.