mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 12:59:00 +00:00
9 lines
102 B
Java
9 lines
102 B
Java
package com.iluwatar;
|
|
|
|
public interface ItemIterator {
|
|
|
|
boolean hasNext();
|
|
|
|
Item next();
|
|
}
|