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

org.psjava.util.ReadOnlyIterator Maven / Gradle / Ivy

The newest version!
package org.psjava.util;

import java.util.Iterator;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy