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

cn.hutool.poi.excel.cell.CellHandler Maven / Gradle / Ivy

There is a newer version: 5.8.34
Show newest version
package cn.hutool.poi.excel.cell;

import org.apache.poi.ss.usermodel.Cell;

/**
 * 单元格处理器接口
 *
 * @author Looly
 */
@FunctionalInterface
public interface CellHandler {

	/**
	 * 处理
	 *
	 * @param cell  单元格对象,可以获取单元格行、列样式等信息
	 * @param value 单元格值
	 */
	void handle(Cell cell, Object value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy