Ошибка строки фильтра jqxGrid внутри jQuery-Smart-Wizard

Ожидание Java 8:

List<Person> olderThan30 = 
  //Create a Stream from the personList
  personList.stream().
  //filter the element to select only those with age >= 30
  filter(p -> p.age >= 30).
  //put those filtered elements into a new List.
  collect(Collectors.toList());
0
задан jannagy02 26 February 2015 в 08:55
поделиться