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

com.github.housepower.jdbc.misc.CheckedIterator Maven / Gradle / Ivy

package com.github.housepower.jdbc.misc;

/**
 * Copyright (C) 2018 SpectX
 * Created by Lauri Nõmme
 * 12.12.2018 16:11
 */
public interface CheckedIterator {
    boolean hasNext() throws E;

    T next() throws E;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy