If I have a class Book
that has inside it a List of Page
objects, how can I generate a collection of objects of Page
given a collection of Book
objects, using Java 8 features such as Streams, Collectors, lamdas etc.? I know how to do this using pre-Java 8 techniques, but I would like to see it done with one line with the Java 8 features.
Thank you.