I have Book and BookList classes. BookList is something like this:
Book
BookList
public class BookList { private final List<
For making a class iteratable you need to implement Iterable Interface.
Iterable
a) Declare the class as below
public class BookList implements Iterable
b) Override the iterator() Method
iterator()
Read More. Hope it will help you.