package iterator; /** Our custom Iterator interface (mirrors java.util.Iterator) */ public interface BookIterator { boolean hasNext(); Book next(); }