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

s.java.util.Iterator Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
package s.java.util;

import i.IObject;

public interface Iterator extends IObject {
    boolean avm_hasNext();

    E avm_next();

    default void avm_remove() {
        throw new UnsupportedOperationException("remove");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy