added iterator sample

This commit is contained in:
Ilkka Seppala
2014-08-18 23:18:15 +03:00
parent 71d7c875d6
commit 91ed79e6bd
8 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.iluwatar;
public interface ItemIterator {
boolean hasNext();
Item next();
}