Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ae53f8408e00700e1704dc424657d146a22e5f91 (plain) (blame)
1
2
3
4
5
6
7
package java.util;

public interface Iterator<E> {
    boolean hasNext();
    E next();
    void remove();
}

Back to the top