com.jchanghong.poi.excel.cell.FormulaCellValue Maven / Gradle / Ivy
The newest version!
package com.jchanghong.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;
}
}