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

net.fortytwo.sesametools.EmptyCloseableIteration Maven / Gradle / Ivy

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