
net.fortytwo.sesametools.EmptyCloseableIteration Maven / Gradle / Ivy
package net.fortytwo.sesametools;
import info.aduna.iteration.CloseableIteration;
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