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

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy