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

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

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

import i.IObject;

public interface ListIterator extends Iterator{

    boolean avm_hasNext();

    E avm_next();

    boolean avm_hasPrevious();

    E avm_previous();

    int avm_nextIndex();

    int avm_previousIndex();

    void avm_remove();

    void avm_set(E e);

    void avm_add(E e);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy