zhao
2021-07-09 0821715ebc11d3934d0594a1cc2c39686d808906
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for Additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
       http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */
 
namespace HH.WMS.Utils.NPOI.SS.UserModel
{
 
    /**
     * Evaluates formula cells.<p/>
     * 
     * For performance reasons, this class keeps a cache of all previously calculated intermediate
     * cell values.  Be sure to call {@link #ClearAllCachedResultValues()} if any workbook cells are Changed between
     * calls to Evaluate~ methods on this class.
     * 
     * @author Amol S. Deshmukh &lt; amolweb at ya hoo dot com &gt;
     * @author Josh Micich
     */
    public interface IFormulaEvaluator
    {
 
        /**
         * Should be called whenever there are Changes 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
         */
        void ClearAllCachedResultValues();
        /**
         * Should be called to tell the cell value cache that the specified (value or formula) cell 
         * has Changed.
         * Failure to call this method after changing cell values will cause incorrect behaviour
         * of the Evaluate~ methods of this class
         */
        void NotifySetFormula(ICell cell);
        /**
         * Should be called to tell the cell value cache that the specified cell has just become a
         * formula cell, or the formula text has Changed 
         */
        void NotifyDeleteCell(ICell cell);
        /**
         * Should be called to tell the cell value cache that the specified (value or formula) cell
         * has changed.
         * Failure to call this method after changing cell values will cause incorrect behaviour
         * of the evaluate~ methods of this class
         */
        void NotifyUpdateCell(ICell 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
         */
        CellValue Evaluate(ICell cell);
        /**
        * Loops over all cells in all sheets of the associated 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.
         */
        void EvaluateAll(); 
 
        /**
         * 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 #EvaluateInCell(Cell)}
         * @param cell The cell to Evaluate
         * @return The type of the formula result (the cell's type remains as Cell.CELL_TYPE_FORMULA however)
         */
        CellType EvaluateFormulaCell(ICell cell);
 
        /**
         * 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 Cell 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(Cell)}
         * @param cell
         */
        ICell EvaluateInCell(ICell cell);
    }
 
}