Skip to main content
summaryrefslogtreecommitdiffstats
blob: f90ee762c2f060361eec02cd8e921dd32197af71 (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