All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.util.Iterator Maven / Gradle / Ivy

The newest version!
package java.util;

public interface Iterator {
    boolean hasNext();

    /**
     * @throws NoSuchElementException
     */
    Object next();

    /**
     * @throws UnsupportedOperationException
     * @throws IllegalStateException
     */
    void remove();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy