cn.hutool.poi.excel.cell.FormulaCellValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-poi Show documentation
Show all versions of hutool-poi Show documentation
Hutool POI工具类(对MS Office操作)
package cn.hutool.poi.excel.cell;
/**
* 公式类型的值
*
* @author looly
* @since 4.0.11
*/
public class FormulaCellValue implements CellValue {
/** 公式 */
String formula;
public FormulaCellValue(String formula) {
this.formula = formula;
}
@Override
public String getValue() {
return this.formula;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy