List<User> sortedUsers = users.stream() .sorted(Comparator.comparing(User::getCreatedOn).reversed()) .collect(Collectors.toList());