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

cn.hutool.poi.excel.cell.CellEditor 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 CellEditor {

	/**
	 * 编辑
	 *
	 * @param cell  单元格对象,可以获取单元格行、列样式等信息
	 * @param value 单元格值
	 * @return 编辑后的对象
	 */
	Object edit(Cell cell, Object value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy