Код: Выделить всё
results.stream().forEach((record) -> {
Book book = (Book) record[0];
Author author = (Author) record[1];
})
Подробнее здесь: https://stackoverflow.com/questions/361 ... imefaces-4
Код: Выделить всё
results.stream().forEach((record) -> {
Book book = (Book) record[0];
Author author = (Author) record[1];
})