cn.geektool.core.io.LineHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geektool-core Show documentation
Show all versions of geektool-core Show documentation
geektool核心,包括集合、字符串、Bean等工具
The newest version!
package cn.geektool.core.io;
/**
* 行处理器
* @author jd
*
*/
@FunctionalInterface
public interface LineHandler {
/**
* 处理一行数据,可以编辑后存入指定地方
* @param line 行
*/
void handle(String line);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy