An open API service indexing awesome lists of open source software.

https://github.com/zehracakir/booklist


https://github.com/zehracakir/booklist

enum java lambda-expressions streamapi typecasting

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Homework

## Book List

* The Book class consists of the name of the book, the number of pages, the name of the author, and the date of publication.

* Create 10 objects from the Book class and store them in an ArrayList structure. Using the stream structure and lambda expressions, write it to create a new Map with the name of the author opposite the book name.

* Make the enhancement that filters the books with more than 100 pages from this 10-element Book list and returns them as a new list. (You can use Stream and Lambda expressions.)