List of usage examples for org.apache.poi.xssf.usermodel XSSFFormulaEvaluator create
public static XSSFFormulaEvaluator create(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder)
From source file:com.helger.poi.excel.ExcelFormulaEvaluator.java
License:Apache License
public ExcelFormulaEvaluator(@Nonnull final Workbook aWB, @Nullable final IStabilityClassifier aStability) { m_aEvaluator = aWB instanceof HSSFWorkbook ? new HSSFFormulaEvaluator((HSSFWorkbook) aWB, aStability) : XSSFFormulaEvaluator.create((XSSFWorkbook) aWB, aStability, null); }