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

org.noear.wood.IDataReader Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
package org.noear.wood;

import java.sql.SQLException;

/**
 * 数据读取器接口
 *
 * @author noear 2024/7/12 created
 */
public interface IDataReader extends AutoCloseable {
    /**
     * 获取下一个(可能为 null)
     */
    T next() throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy