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

solid.stream.ReadOnlyIterator Maven / Gradle / Ivy

package solid.stream;

import java.util.Iterator;

abstract class ReadOnlyIterator implements Iterator {
    @Override
    public void remove() {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy