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

java.util.Enumeration Maven / Gradle / Ivy

The newest version!
package java.util;

/**
 * @since CLDC 1.0
 */
public interface Enumeration {
    boolean hasMoreElements();

    /**
     * @throws NoSuchElementException
     */
    Object nextElement();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy