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

com.y3tu.tool.poi.excel.cell.FormulaCellValue Maven / Gradle / Ivy

package com.y3tu.tool.poi.excel.cell;

/**
 * 公式类型的值
 *
 * @author looly
 */
public class FormulaCellValue implements CellValue {

    /**
     * 公式
     */
    String formula;

    public FormulaCellValue(String formula) {
        this.formula = formula;
    }

    @Override
    public String getValue() {
        return this.formula;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy