mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 18:58:44 +00:00
14 lines
145 B
Java
14 lines
145 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Iterator interface.
|
|
*
|
|
*/
|
|
public interface ItemIterator {
|
|
|
|
boolean hasNext();
|
|
|
|
Item next();
|
|
}
|