
net.fortytwo.sesametools.EmptyCloseableIteration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Common utilities for Sesametools
The newest version!
package net.fortytwo.sesametools;
import info.aduna.iteration.CloseableIteration;
/**
* @author Joshua Shinavier (http://fortytwo.net)
*/
public class EmptyCloseableIteration implements CloseableIteration {
public void close() throws E {
}
public boolean hasNext() throws E {
return false;
}
public T next() throws E {
return null;
}
public void remove() throws E {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy