⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 formularesolver.java

📁 一个java生成自动生成Excel
💻 JAVA
字号:
package net.sf.jxls.formula;

import net.sf.jxls.controller.WorkbookCellFinder;

/**
 * An interface to resolve coded formulas into real Excel formulas
 * @author Leonid Vysochyn
 */
public interface FormulaResolver {
    /**
     * This method resolves original formula coded in XLS template file into the real Excel formula
     * @param sourceFormula - {@link Formula} object representing coded formula found in XLS template file
     * @param cellFinder    - {@link net.sf.jxls.controller.WorkbookCellFinder}
     * @return Real Excel formula to be placed instead of the coded one
     */
    String resolve(Formula sourceFormula, WorkbookCellFinder cellFinder);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -