"Catalog" is a class that stores a collection of "Item" objects. I have chosen to use a List collection for this purpose. So it looks like:
public class Catalog {
List<Item> itemList;
The main class must be able to access the Item elements with a for loop that treats a Catalog object like a collection itself. Assume a Catalog object named "catalog:"
for (Item items : catalog) {
//various operations involving item
}
Problem: I get the incompatible types error.
found: java.lang.Object
requird: Item
My Catalog class implements Iterable and has a method iterator() that returns an iterator for the List:
public Iterator iterator() {
Iterator itr = itemList.iterator();
return itr;
}
So what am I doing wrong?