Я имею List
в Employee
с с различными датами присоединения. Я хочу получить сотрудников до и после определенной даты присоединения из списка с помощью потоков.
я попробовал следующий код,
List<Employee> employeeListAfter = employeeList.stream()
.filter(e -> e.joiningDate.isAfter(specificDate))
.collect(Collectors.toList());
List<Employee> employeeListBefore = employeeList.stream()
.filter(e -> e.joiningDate.isBefore(specificDate))
.collect(Collectors.toList());
class Employee{
int id;
String name;
LocalDate joiningDate;
}
Есть ли способ сделать это в одном потоке?
partitioningBy