]> source.dussan.org Git - poi.git/commitdiff
Fix inconsistent indents/whitespace
authorNick Burch <nick@apache.org>
Fri, 31 Jul 2015 20:24:29 +0000 (20:24 +0000)
committerNick Burch <nick@apache.org>
Fri, 31 Jul 2015 20:24:29 +0000 (20:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1693645 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFFormulaEvaluator.java

index 6b2b48ee02f533a6885c48accab85d5c092c3ddf..180bd96859d6dd75dfc670fd6b4b93486e648031 100644 (file)
@@ -44,255 +44,255 @@ import org.apache.poi.ss.usermodel.FormulaEvaluator;
  */
 public class XSSFFormulaEvaluator implements FormulaEvaluator, WorkbookEvaluatorProvider {
 
-       private WorkbookEvaluator _bookEvaluator;
-       private XSSFWorkbook _book;
+    private WorkbookEvaluator _bookEvaluator;
+    private XSSFWorkbook _book;
 
-       public XSSFFormulaEvaluator(XSSFWorkbook workbook) {
-               this(workbook, null, null);
-       }
-       /**
-        * @param stabilityClassifier used to optimise caching performance. Pass <code>null</code>
-        * for the (conservative) assumption that any cell may have its definition changed after
-        * evaluation begins.
-        * @deprecated (Sep 2009) (reduce overloading) use {@link #create(XSSFWorkbook, org.apache.poi.ss.formula.IStabilityClassifier, org.apache.poi.ss.formula.udf.UDFFinder)}
-        */
+    public XSSFFormulaEvaluator(XSSFWorkbook workbook) {
+        this(workbook, null, null);
+    }
+    /**
+     * @param stabilityClassifier used to optimise caching performance. Pass <code>null</code>
+     * for the (conservative) assumption that any cell may have its definition changed after
+     * evaluation begins.
+     * @deprecated (Sep 2009) (reduce overloading) use {@link #create(XSSFWorkbook, org.apache.poi.ss.formula.IStabilityClassifier, org.apache.poi.ss.formula.udf.UDFFinder)}
+     */
     @Deprecated
     public XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier) {
-               _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, null);
-               _book = workbook;
-       }
-       private XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder) {
-               _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, udfFinder);
-      _book = workbook;
-       }
+        _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, null);
+        _book = workbook;
+    }
+    private XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder) {
+        _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, udfFinder);
+        _book = workbook;
+    }
 
-       /**
-        * @param stabilityClassifier used to optimise caching performance. Pass <code>null</code>
-        * for the (conservative) assumption that any cell may have its definition changed after
-        * evaluation begins.
-        * @param udfFinder pass <code>null</code> for default (AnalysisToolPak only)
-        */
-       public static XSSFFormulaEvaluator create(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder) {
-               return new XSSFFormulaEvaluator(workbook, stabilityClassifier, udfFinder);
-       }
+    /**
+     * @param stabilityClassifier used to optimise caching performance. Pass <code>null</code>
+     * for the (conservative) assumption that any cell may have its definition changed after
+     * evaluation begins.
+     * @param udfFinder pass <code>null</code> for default (AnalysisToolPak only)
+     */
+    public static XSSFFormulaEvaluator create(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder) {
+        return new XSSFFormulaEvaluator(workbook, stabilityClassifier, udfFinder);
+    }
 
 
-       /**
-        * Should be called whenever there are major changes (e.g. moving sheets) to input cells
-        * in the evaluated workbook.
-        * Failure to call this method after changing cell values will cause incorrect behaviour
-        * of the evaluate~ methods of this class
-        */
-       public void clearAllCachedResultValues() {
-               _bookEvaluator.clearAllCachedResultValues();
-       }
-       public void notifySetFormula(Cell cell) {
-               _bookEvaluator.notifyUpdateCell(new XSSFEvaluationCell((XSSFCell)cell));
-       }
-       public void notifyDeleteCell(Cell cell) {
-               _bookEvaluator.notifyDeleteCell(new XSSFEvaluationCell((XSSFCell)cell));
-       }
+    /**
+     * Should be called whenever there are major changes (e.g. moving sheets) to input cells
+     * in the evaluated workbook.
+     * Failure to call this method after changing cell values will cause incorrect behaviour
+     * of the evaluate~ methods of this class
+     */
+    public void clearAllCachedResultValues() {
+        _bookEvaluator.clearAllCachedResultValues();
+    }
+    public void notifySetFormula(Cell cell) {
+        _bookEvaluator.notifyUpdateCell(new XSSFEvaluationCell((XSSFCell)cell));
+    }
+    public void notifyDeleteCell(Cell cell) {
+        _bookEvaluator.notifyDeleteCell(new XSSFEvaluationCell((XSSFCell)cell));
+    }
     public void notifyUpdateCell(Cell cell) {
         _bookEvaluator.notifyUpdateCell(new XSSFEvaluationCell((XSSFCell)cell));
     }
 
-       /**
-        * If cell contains a formula, the formula is evaluated and returned,
-        * else the CellValue simply copies the appropriate cell value from
-        * the cell and also its cell type. This method should be preferred over
-        * evaluateInCell() when the call should not modify the contents of the
-        * original cell.
-        * @param cell
-        */
-       public CellValue evaluate(Cell cell) {
-               if (cell == null) {
-                       return null;
-               }
+    /**
+     * If cell contains a formula, the formula is evaluated and returned,
+     * else the CellValue simply copies the appropriate cell value from
+     * the cell and also its cell type. This method should be preferred over
+     * evaluateInCell() when the call should not modify the contents of the
+     * original cell.
+     * @param cell
+     */
+    public CellValue evaluate(Cell cell) {
+        if (cell == null) {
+            return null;
+        }
 
-               switch (cell.getCellType()) {
-                       case XSSFCell.CELL_TYPE_BOOLEAN:
-                               return CellValue.valueOf(cell.getBooleanCellValue());
-                       case XSSFCell.CELL_TYPE_ERROR:
-                               return CellValue.getError(cell.getErrorCellValue());
-                       case XSSFCell.CELL_TYPE_FORMULA:
-                               return evaluateFormulaCellValue(cell);
-                       case XSSFCell.CELL_TYPE_NUMERIC:
-                               return new CellValue(cell.getNumericCellValue());
-                       case XSSFCell.CELL_TYPE_STRING:
-                               return new CellValue(cell.getRichStringCellValue().getString());
+        switch (cell.getCellType()) {
+            case XSSFCell.CELL_TYPE_BOOLEAN:
+                return CellValue.valueOf(cell.getBooleanCellValue());
+            case XSSFCell.CELL_TYPE_ERROR:
+                return CellValue.getError(cell.getErrorCellValue());
+            case XSSFCell.CELL_TYPE_FORMULA:
+                return evaluateFormulaCellValue(cell);
+            case XSSFCell.CELL_TYPE_NUMERIC:
+                return new CellValue(cell.getNumericCellValue());
+            case XSSFCell.CELL_TYPE_STRING:
+                return new CellValue(cell.getRichStringCellValue().getString());
             case XSSFCell.CELL_TYPE_BLANK:
                 return null;
-               }
-               throw new IllegalStateException("Bad cell type (" + cell.getCellType() + ")");
-       }
+        }
+        throw new IllegalStateException("Bad cell type (" + cell.getCellType() + ")");
+    }
 
 
-       /**
-        * If cell contains formula, it evaluates the formula,
-        *  and saves the result of the formula. The cell
-        *  remains as a formula cell.
-        * Else if cell does not contain formula, this method leaves
-        *  the cell unchanged.
-        * Note that the type of the formula result is returned,
-        *  so you know what kind of value is also stored with
-        *  the formula.
-        * <pre>
-        * int evaluatedCellType = evaluator.evaluateFormulaCell(cell);
-        * </pre>
-        * Be aware that your cell will hold both the formula,
-        *  and the result. If you want the cell replaced with
-        *  the result of the formula, use {@link #evaluate(org.apache.poi.ss.usermodel.Cell)} }
-        * @param cell The cell to evaluate
-        * @return The type of the formula result (the cell's type remains as HSSFCell.CELL_TYPE_FORMULA however)
-        */
-       public int evaluateFormulaCell(Cell cell) {
-               if (cell == null || cell.getCellType() != XSSFCell.CELL_TYPE_FORMULA) {
-                       return -1;
-               }
-               CellValue cv = evaluateFormulaCellValue(cell);
-               // cell remains a formula cell, but the cached value is changed
-               setCellValue(cell, cv);
-               return cv.getCellType();
-       }
+    /**
+     * If cell contains formula, it evaluates the formula,
+     *  and saves the result of the formula. The cell
+     *  remains as a formula cell.
+     * Else if cell does not contain formula, this method leaves
+     *  the cell unchanged.
+     * Note that the type of the formula result is returned,
+     *  so you know what kind of value is also stored with
+     *  the formula.
+     * <pre>
+     * int evaluatedCellType = evaluator.evaluateFormulaCell(cell);
+     * </pre>
+     * Be aware that your cell will hold both the formula,
+     *  and the result. If you want the cell replaced with
+     *  the result of the formula, use {@link #evaluate(org.apache.poi.ss.usermodel.Cell)} }
+     * @param cell The cell to evaluate
+     * @return The type of the formula result (the cell's type remains as HSSFCell.CELL_TYPE_FORMULA however)
+     */
+    public int evaluateFormulaCell(Cell cell) {
+        if (cell == null || cell.getCellType() != XSSFCell.CELL_TYPE_FORMULA) {
+            return -1;
+        }
+        CellValue cv = evaluateFormulaCellValue(cell);
+        // cell remains a formula cell, but the cached value is changed
+        setCellValue(cell, cv);
+        return cv.getCellType();
+    }
 
-       /**
-        * If cell contains formula, it evaluates the formula, and
-        *  puts the formula result back into the cell, in place
-        *  of the old formula.
-        * Else if cell does not contain formula, this method leaves
-        *  the cell unchanged.
-        * Note that the same instance of HSSFCell is returned to
-        * allow chained calls like:
-        * <pre>
-        * int evaluatedCellType = evaluator.evaluateInCell(cell).getCellType();
-        * </pre>
-        * Be aware that your cell value will be changed to hold the
-        *  result of the formula. If you simply want the formula
-        *  value computed for you, use {@link #evaluateFormulaCell(org.apache.poi.ss.usermodel.Cell)} }
-        * @param cell
-        */
-       public XSSFCell evaluateInCell(Cell cell) {
-               if (cell == null) {
-                       return null;
-               }
-               XSSFCell result = (XSSFCell) cell;
-               if (cell.getCellType() == XSSFCell.CELL_TYPE_FORMULA) {
-                       CellValue cv = evaluateFormulaCellValue(cell);
-                       setCellType(cell, cv); // cell will no longer be a formula cell
-                       setCellValue(cell, cv);
-               }
-               return result;
-       }
-       private static void setCellType(Cell cell, CellValue cv) {
-               int cellType = cv.getCellType();
-               switch (cellType) {
-                       case XSSFCell.CELL_TYPE_BOOLEAN:
-                       case XSSFCell.CELL_TYPE_ERROR:
-                       case XSSFCell.CELL_TYPE_NUMERIC:
-                       case XSSFCell.CELL_TYPE_STRING:
-                               cell.setCellType(cellType);
-                               return;
-                       case XSSFCell.CELL_TYPE_BLANK:
-                               // never happens - blanks eventually get translated to zero
-                       case XSSFCell.CELL_TYPE_FORMULA:
-                               // this will never happen, we have already evaluated the formula
-               }
-               throw new IllegalStateException("Unexpected cell value type (" + cellType + ")");
-       }
+    /**
+     * If cell contains formula, it evaluates the formula, and
+     *  puts the formula result back into the cell, in place
+     *  of the old formula.
+     * Else if cell does not contain formula, this method leaves
+     *  the cell unchanged.
+     * Note that the same instance of HSSFCell is returned to
+     * allow chained calls like:
+     * <pre>
+     * int evaluatedCellType = evaluator.evaluateInCell(cell).getCellType();
+     * </pre>
+     * Be aware that your cell value will be changed to hold the
+     *  result of the formula. If you simply want the formula
+     *  value computed for you, use {@link #evaluateFormulaCell(org.apache.poi.ss.usermodel.Cell)} }
+     * @param cell
+     */
+    public XSSFCell evaluateInCell(Cell cell) {
+        if (cell == null) {
+            return null;
+        }
+        XSSFCell result = (XSSFCell) cell;
+        if (cell.getCellType() == XSSFCell.CELL_TYPE_FORMULA) {
+            CellValue cv = evaluateFormulaCellValue(cell);
+            setCellType(cell, cv); // cell will no longer be a formula cell
+            setCellValue(cell, cv);
+        }
+        return result;
+    }
+    private static void setCellType(Cell cell, CellValue cv) {
+        int cellType = cv.getCellType();
+        switch (cellType) {
+            case XSSFCell.CELL_TYPE_BOOLEAN:
+            case XSSFCell.CELL_TYPE_ERROR:
+            case XSSFCell.CELL_TYPE_NUMERIC:
+            case XSSFCell.CELL_TYPE_STRING:
+                cell.setCellType(cellType);
+                return;
+            case XSSFCell.CELL_TYPE_BLANK:
+                // never happens - blanks eventually get translated to zero
+            case XSSFCell.CELL_TYPE_FORMULA:
+                // this will never happen, we have already evaluated the formula
+        }
+        throw new IllegalStateException("Unexpected cell value type (" + cellType + ")");
+    }
+
+    private static void setCellValue(Cell cell, CellValue cv) {
+        int cellType = cv.getCellType();
+        switch (cellType) {
+            case XSSFCell.CELL_TYPE_BOOLEAN:
+                cell.setCellValue(cv.getBooleanValue());
+                break;
+            case XSSFCell.CELL_TYPE_ERROR:
+                cell.setCellErrorValue(cv.getErrorValue());
+                break;
+            case XSSFCell.CELL_TYPE_NUMERIC:
+                cell.setCellValue(cv.getNumberValue());
+                break;
+            case XSSFCell.CELL_TYPE_STRING:
+                cell.setCellValue(new XSSFRichTextString(cv.getStringValue()));
+                break;
+            case XSSFCell.CELL_TYPE_BLANK:
+                // never happens - blanks eventually get translated to zero
+            case XSSFCell.CELL_TYPE_FORMULA:
+                // this will never happen, we have already evaluated the formula
+            default:
+                throw new IllegalStateException("Unexpected cell value type (" + cellType + ")");
+        }
+    }
 
-       private static void setCellValue(Cell cell, CellValue cv) {
-               int cellType = cv.getCellType();
-               switch (cellType) {
-                       case XSSFCell.CELL_TYPE_BOOLEAN:
-                               cell.setCellValue(cv.getBooleanValue());
-                               break;
-                       case XSSFCell.CELL_TYPE_ERROR:
-                               cell.setCellErrorValue(cv.getErrorValue());
-                               break;
-                       case XSSFCell.CELL_TYPE_NUMERIC:
-                               cell.setCellValue(cv.getNumberValue());
-                               break;
-                       case XSSFCell.CELL_TYPE_STRING:
-                               cell.setCellValue(new XSSFRichTextString(cv.getStringValue()));
-                               break;
-                       case XSSFCell.CELL_TYPE_BLANK:
-                               // never happens - blanks eventually get translated to zero
-                       case XSSFCell.CELL_TYPE_FORMULA:
-                               // this will never happen, we have already evaluated the formula
-                       default:
-                               throw new IllegalStateException("Unexpected cell value type (" + cellType + ")");
-               }
-       }
+    /**
+     * Loops over all cells in all sheets of the supplied
+     *  workbook.
+     * For cells that contain formulas, their formulas are
+     *  evaluated, and the results are saved. These cells
+     *  remain as formula cells.
+     * For cells that do not contain formulas, no changes
+     *  are made.
+     * This is a helpful wrapper around looping over all
+     *  cells, and calling evaluateFormulaCell on each one.
+     */
+    public static void evaluateAllFormulaCells(XSSFWorkbook wb) {
+        HSSFFormulaEvaluator.evaluateAllFormulaCells(wb);
+    }
+    /**
+     * Loops over all cells in all sheets of the supplied
+     *  workbook.
+     * For cells that contain formulas, their formulas are
+     *  evaluated, and the results are saved. These cells
+     *  remain as formula cells.
+     * For cells that do not contain formulas, no changes
+     *  are made.
+     * This is a helpful wrapper around looping over all
+     *  cells, and calling evaluateFormulaCell on each one.
+     */
+    public void evaluateAll() {
+        HSSFFormulaEvaluator.evaluateAllFormulaCells(_book);
+    }
 
-       /**
-        * Loops over all cells in all sheets of the supplied
-        *  workbook.
-        * For cells that contain formulas, their formulas are
-        *  evaluated, and the results are saved. These cells
-        *  remain as formula cells.
-        * For cells that do not contain formulas, no changes
-        *  are made.
-        * This is a helpful wrapper around looping over all
-        *  cells, and calling evaluateFormulaCell on each one.
-        */
-       public static void evaluateAllFormulaCells(XSSFWorkbook wb) {
-           HSSFFormulaEvaluator.evaluateAllFormulaCells(wb);
-       }
-       /**
-        * Loops over all cells in all sheets of the supplied
-        *  workbook.
-        * For cells that contain formulas, their formulas are
-        *  evaluated, and the results are saved. These cells
-        *  remain as formula cells.
-        * For cells that do not contain formulas, no changes
-        *  are made.
-        * This is a helpful wrapper around looping over all
-        *  cells, and calling evaluateFormulaCell on each one.
-        */
-       public void evaluateAll() {
-           HSSFFormulaEvaluator.evaluateAllFormulaCells(_book);
-       }
-       
-       /**
-        * Turns a XSSFCell into a XSSFEvaluationCell
-        */
-       protected EvaluationCell toEvaluationCell(Cell cell) {
+    /**
+     * Turns a XSSFCell into a XSSFEvaluationCell
+     */
+    protected EvaluationCell toEvaluationCell(Cell cell) {
         if (!(cell instanceof XSSFCell)){
             throw new IllegalArgumentException("Unexpected type of cell: " + cell.getClass() + "." +
                     " Only XSSFCells can be evaluated.");
         }
 
         return new XSSFEvaluationCell((XSSFCell)cell);
-       }
+    }
+
+    /**
+     * Returns a CellValue wrapper around the supplied ValueEval instance.
+     */
+    private CellValue evaluateFormulaCellValue(Cell cell) {
+        EvaluationCell evalCell = toEvaluationCell(cell);
+        ValueEval eval = _bookEvaluator.evaluate(evalCell);
+        if (eval instanceof NumberEval) {
+            NumberEval ne = (NumberEval) eval;
+            return new CellValue(ne.getNumberValue());
+        }
+        if (eval instanceof BoolEval) {
+            BoolEval be = (BoolEval) eval;
+            return CellValue.valueOf(be.getBooleanValue());
+        }
+        if (eval instanceof StringEval) {
+            StringEval ne = (StringEval) eval;
+            return new CellValue(ne.getStringValue());
+        }
+        if (eval instanceof ErrorEval) {
+            return CellValue.getError(((ErrorEval)eval).getErrorCode());
+        }
+        throw new RuntimeException("Unexpected eval class (" + eval.getClass().getName() + ")");
+    }
 
-       /**
-        * Returns a CellValue wrapper around the supplied ValueEval instance.
-        */
-       private CellValue evaluateFormulaCellValue(Cell cell) {
-           EvaluationCell evalCell = toEvaluationCell(cell);
-               ValueEval eval = _bookEvaluator.evaluate(evalCell);
-               if (eval instanceof NumberEval) {
-                       NumberEval ne = (NumberEval) eval;
-                       return new CellValue(ne.getNumberValue());
-               }
-               if (eval instanceof BoolEval) {
-                       BoolEval be = (BoolEval) eval;
-                       return CellValue.valueOf(be.getBooleanValue());
-               }
-               if (eval instanceof StringEval) {
-                       StringEval ne = (StringEval) eval;
-                       return new CellValue(ne.getStringValue());
-               }
-               if (eval instanceof ErrorEval) {
-                       return CellValue.getError(((ErrorEval)eval).getErrorCode());
-               }
-               throw new RuntimeException("Unexpected eval class (" + eval.getClass().getName() + ")");
-       }
-       
     public void setupReferencedWorkbooks(Map<String, FormulaEvaluator> evaluators) {
         CollaboratingWorkbooksEnvironment.setupFormulaEvaluator(evaluators);
     }
-    
+
     public WorkbookEvaluator _getWorkbookEvaluator() {
         return _bookEvaluator;
     }