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;
/**
* 结果,使用ExcelWriter时可以不用
*/
Object result;
/**
* 构造
*
* @param formula 公式
*/
public FormulaCellValue(String formula) {
this(formula, null);
}
/**
* 构造
*
* @param formula 公式
* @param result 结果
*/
public FormulaCellValue(String formula, Object result) {
this.formula = formula;
this.result = result;
}
@Override
public String getValue() {
return this.formula;
}
/**
* 获取结果
* @return 结果
*/
public Object getResult() {
return this.result;
}
@Override
public String toString() {
return getResult().toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy