Modified: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/Sumifs.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/Sumifs.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/Sumifs.html (original) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/Sumifs.html Fri Feb 17 11:14:33 2017 @@ -103,8 +103,7 @@ <hr> <br> <pre>public final class <span class="strong">Sumifs</span> -extends java.lang.Object -implements <a href="../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a></pre> +extends java.lang.Object</pre> <div class="block">Implementation for the Excel function SUMIFS<p> Syntax : <br/> @@ -122,8 +121,6 @@ implements <a href="../../../../../../or Up to 127 range/criteria pairs are allowed. </ul> </p></div> -<dl><dt><span class="strong">Author:</span></dt> - <dd>Yegor Kozlov</dd></dl> </li> </ul> </div> @@ -144,7 +141,9 @@ implements <a href="../../../../../../or </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a></code></td> -<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html#instance">instance</a></strong></code> </td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html#instance">instance</a></strong></code> +<div class="block">Singleton</div> +</td> </tr> </table> </li> @@ -179,10 +178,21 @@ implements <a href="../../../../../../or <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> +<td class="colFirst"><code>protected static <a href="../../../../../../org/apache/poi/ss/formula/eval/AreaEval.html" title="interface in org.apache.poi.ss.formula.eval">AreaEval</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html#convertRangeArg(org.apache.poi.ss.formula.eval.ValueEval)">convertRangeArg</a></strong>(<a href="../../../../../../org/apache/poi/ss/formula/eval/ValueEval.html" title="interface in org.apache.poi.ss.formula.eval">ValueEval</a> eval)</code> </td> +</tr> +<tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/eval/ValueEval.html" title="interface in org.apache.poi.ss.formula.eval">ValueEval</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html#evaluate(org.apache.poi.ss.formula.eval.ValueEval[],%20org.apache.poi.ss.formula.OperationEvaluationContext)">evaluate</a></strong>(<a href="../../../../../../org/apache/poi/ss/formula/eval/ValueEval.html" title="interface in org.apache.poi.ss.formula.eval">ValueEval</a>[] args, <a href="../../../../../../org/apache/poi/ss/formula/OperationEvaluationContext.html" title="class in org.apache.poi.ss.formula">OperationEvaluationContext</a> ec)</code> </td> </tr> +<tr class="altColor"> +<td class="colFirst"><code>protected boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html#hasInitialRange()">hasInitialRange</a></strong>()</code> +<div class="block">https://support.office.com/en-us/article/SUMIFS-function-c9e748f5-7ea7-455d-9406-611cebce642b + COUNTIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...</div> +</td> +</tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> @@ -212,6 +222,7 @@ implements <a href="../../../../../../or <li class="blockList"> <h4>instance</h4> <pre>public static final <a href="../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a> instance</pre> +<div class="block">Singleton</div> </li> </ul> </li> @@ -239,10 +250,23 @@ implements <a href="../../../../../../or <!-- --> </a> <h3>Method Detail</h3> +<a name="hasInitialRange()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>hasInitialRange</h4> +<pre>protected boolean hasInitialRange()</pre> +<div class="block">https://support.office.com/en-us/article/SUMIFS-function-c9e748f5-7ea7-455d-9406-611cebce642b + COUNTIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ... + need at least 3 arguments and need to have an odd number of arguments (sum-range plus x*(criteria_range, criteria))</div> +<dl><dt><span class="strong">Returns:</span></dt><dd>true if there should be a range argument before the criteria pairs</dd><dt><span class="strong">See Also:</span></dt><dd><code>Baseifs.hasInitialRange()</code></dd></dl> +</li> +</ul> <a name="evaluate(org.apache.poi.ss.formula.eval.ValueEval[], org.apache.poi.ss.formula.OperationEvaluationContext)"> <!-- --> </a> -<ul class="blockListLast"> +<ul class="blockList"> <li class="blockList"> <h4>evaluate</h4> <pre>public <a href="../../../../../../org/apache/poi/ss/formula/eval/ValueEval.html" title="interface in org.apache.poi.ss.formula.eval">ValueEval</a> evaluate(<a href="../../../../../../org/apache/poi/ss/formula/eval/ValueEval.html" title="interface in org.apache.poi.ss.formula.eval">ValueEval</a>[] args, @@ -257,6 +281,18 @@ implements <a href="../../../../../../or a specified Excel error (Exceptions are never thrown to represent Excel errors).</dd></dl> </li> </ul> +<a name="convertRangeArg(org.apache.poi.ss.formula.eval.ValueEval)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>convertRangeArg</h4> +<pre>protected static <a href="../../../../../../org/apache/poi/ss/formula/eval/AreaEval.html" title="interface in org.apache.poi.ss.formula.eval">AreaEval</a> convertRangeArg(<a href="../../../../../../org/apache/poi/ss/formula/eval/ValueEval.html" title="interface in org.apache.poi.ss.formula.eval">ValueEval</a> eval) + throws <a href="../../../../../../org/apache/poi/ss/formula/eval/EvaluationException.html" title="class in org.apache.poi.ss.formula.eval">EvaluationException</a></pre> +<dl><dt><span class="strong">Throws:</span></dt> +<dd><code><a href="../../../../../../org/apache/poi/ss/formula/eval/EvaluationException.html" title="class in org.apache.poi.ss.formula.eval">EvaluationException</a></code></dd></dl> +</li> +</ul> </li> </ul> </li>
Modified: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/FreeRefFunction.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/FreeRefFunction.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/FreeRefFunction.html (original) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/FreeRefFunction.html Fri Feb 17 11:14:33 2017 @@ -392,7 +392,9 @@ </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a></code></td> -<td class="colLast"><span class="strong">Sumifs.</span><code><strong><a href="../../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html#instance">instance</a></strong></code> </td> +<td class="colLast"><span class="strong">Sumifs.</span><code><strong><a href="../../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html#instance">instance</a></strong></code> +<div class="block">Singleton</div> +</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a></code></td> @@ -432,7 +434,9 @@ </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a></code></td> -<td class="colLast"><span class="strong">Countifs.</span><code><strong><a href="../../../../../../../org/apache/poi/ss/formula/functions/Countifs.html#instance">instance</a></strong></code> </td> +<td class="colLast"><span class="strong">Countifs.</span><code><strong><a href="../../../../../../../org/apache/poi/ss/formula/functions/Countifs.html#instance">instance</a></strong></code> +<div class="block">Singleton</div> +</td> </tr> </tbody> </table> Modified: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/package-tree.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/package-tree.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/package-tree.html (original) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/package-tree.html Fri Feb 17 11:14:33 2017 @@ -86,7 +86,7 @@ <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Counta.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Counta</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Function.html" title="interface in org.apache.poi.ss.formula.functions">Function</a>)</li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Countif.ErrorMatcher.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countif.ErrorMatcher</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Countif.StringMatcher.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countif.StringMatcher</span></a></li> -<li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Countifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countifs</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a>)</li> +<li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Countifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countifs</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Days360.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Days360</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Dec2Bin.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Dec2Bin</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a>)</li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Dec2Hex.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Dec2Hex</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a>)</li> @@ -194,7 +194,7 @@ <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Substitute.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Substitute</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Subtotal.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Subtotal</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Function.html" title="interface in org.apache.poi.ss.formula.functions">Function</a>)</li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Sumif.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumif</span></a></li> -<li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumifs</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a>)</li> +<li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumifs</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Sumproduct.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumproduct</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Function.html" title="interface in org.apache.poi.ss.formula.functions">Function</a>)</li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/TextFunction.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">TextFunction</span></a> (implements org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Function.html" title="interface in org.apache.poi.ss.formula.functions">Function</a>)</li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="../../../../../../org/apache/poi/ss/formula/functions/Vlookup.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Vlookup</span></a></li> Modified: poi/site/publish/apidocs/org/apache/poi/util/LittleEndianInputStream.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/LittleEndianInputStream.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/LittleEndianInputStream.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/LittleEndianInputStream.html Fri Feb 17 11:14:33 2017 @@ -123,8 +123,6 @@ implements <a href="../../../../org/apac This class does not buffer any input, so the stream read position maintained by this class is consistent with that of the inner stream.</div> -<dl><dt><span class="strong">Author:</span></dt> - <dd>Josh Micich</dd></dl> </li> </ul> </div> Modified: poi/site/publish/apidocs/org/apache/poi/util/class-use/NotImplemented.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/class-use/NotImplemented.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/class-use/NotImplemented.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/class-use/NotImplemented.html Fri Feb 17 11:14:33 2017 @@ -82,40 +82,46 @@ <td class="colLast"> </td> </tr> <tr class="rowColor"> +<td class="colFirst"><a href="#org.apache.poi.hpsf">org.apache.poi.hpsf</a></td> +<td class="colLast"> +<div class="block"><div></div> +</td> +</tr> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.hslf.model">org.apache.poi.hslf.model</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.hssf.usermodel">org.apache.poi.hssf.usermodel</a></td> <td class="colLast"> <div class="block">usermodel package maps HSSF low level strutures to familiar workbook/sheet model</div> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.hssf.usermodel.helpers">org.apache.poi.hssf.usermodel.helpers</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.openxml4j.opc">org.apache.poi.openxml4j.opc</a></td> <td class="colLast"> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.sl.draw">org.apache.poi.sl.draw</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.xdgf.usermodel.section.geometry">org.apache.poi.xdgf.usermodel.section.geometry</a></td> <td class="colLast"> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.xslf.usermodel">org.apache.poi.xslf.usermodel</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.xssf.streaming">org.apache.poi.xssf.streaming</a></td> <td class="colLast"> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.xssf.usermodel">org.apache.poi.xssf.usermodel</a></td> <td class="colLast"> </td> </tr> @@ -144,6 +150,24 @@ </tr> </tbody> </table> +</li> +<li class="blockList"><a name="org.apache.poi.hpsf"> +<!-- --> +</a> +<h3>Uses of <a href="../../../../../org/apache/poi/util/NotImplemented.html" title="annotation in org.apache.poi.util">NotImplemented</a> in <a href="../../../../../org/apache/poi/hpsf/package-summary.html">org.apache.poi.hpsf</a></h3> +<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> +<caption><span>Methods in <a href="../../../../../org/apache/poi/hpsf/package-summary.html">org.apache.poi.hpsf</a> with annotations of type <a href="../../../../../org/apache/poi/util/NotImplemented.html" title="annotation in org.apache.poi.util">NotImplemented</a></span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tbody> +<tr class="altColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><span class="strong">PropertySet.</span><code><strong><a href="../../../../../org/apache/poi/hpsf/PropertySet.html#hashCode()">hashCode</a></strong>()</code> </td> +</tr> +</tbody> +</table> </li> <li class="blockList"><a name="org.apache.poi.hslf.model"> <!-- --> Modified: poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/class-use/Removal.html Fri Feb 17 11:14:33 2017 @@ -119,44 +119,48 @@ HSSF concepts.</div> </td> </tr> <tr class="rowColor"> +<td class="colFirst"><a href="#org.apache.poi.openxml4j.opc.internal">org.apache.poi.openxml4j.opc.internal</a></td> +<td class="colLast"> </td> +</tr> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.poifs.crypt">org.apache.poi.poifs.crypt</a></td> <td class="colLast"> <div class="block">Implementation of the <a href="http://msdn.microsoft.com/en-us/library/dd952186(v=office.12).aspx">ECMA-376 Document Encryption</a></div> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.ss.formula.atp">org.apache.poi.ss.formula.atp</a></td> <td class="colLast"> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.ss.usermodel">org.apache.poi.ss.usermodel</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.ss.util">org.apache.poi.ss.util</a></td> <td class="colLast"> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.xslf.usermodel">org.apache.poi.xslf.usermodel</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.xssf.streaming">org.apache.poi.xssf.streaming</a></td> <td class="colLast"> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.xssf.usermodel">org.apache.poi.xssf.usermodel</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.xssf.usermodel.helpers">org.apache.poi.xssf.usermodel.helpers</a></td> <td class="colLast"> </td> </tr> -<tr class="rowColor"> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.xssf.util">org.apache.poi.xssf.util</a></td> <td class="colLast"> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.xwpf.model">org.apache.poi.xwpf.model</a></td> <td class="colLast"> </td> </tr> @@ -858,6 +862,28 @@ HSSF concepts.</div> </div> </td> </tr> +</tbody> +</table> +</li> +<li class="blockList"><a name="org.apache.poi.openxml4j.opc.internal"> +<!-- --> +</a> +<h3>Uses of <a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">Removal</a> in <a href="../../../../../org/apache/poi/openxml4j/opc/internal/package-summary.html">org.apache.poi.openxml4j.opc.internal</a></h3> +<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> +<caption><span>Fields in <a href="../../../../../org/apache/poi/openxml4j/opc/internal/package-summary.html">org.apache.poi.openxml4j.opc.internal</a> with annotations of type <a href="../../../../../org/apache/poi/util/Removal.html" title="annotation in org.apache.poi.util">Removal</a></span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Field and Description</th> +</tr> +<tbody> +<tr class="altColor"> +<td class="colFirst"><code>static int</code></td> +<td class="colLast"><span class="strong">ZipHelper.</span><code><strong><a href="../../../../../org/apache/poi/openxml4j/opc/internal/ZipHelper.html#READ_WRITE_FILE_BUFFER_SIZE">READ_WRITE_FILE_BUFFER_SIZE</a></strong></code> +<div class="block"><strong>Deprecated.</strong> +<div class="block"><i>in POI 3.16-beta3, not used anymore</i></div> +</div> +</td> +</tr> </tbody> </table> </li> Modified: poi/site/publish/apidocs/org/apache/poi/util/class-use/SuppressForbidden.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/class-use/SuppressForbidden.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/class-use/SuppressForbidden.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/class-use/SuppressForbidden.html Fri Feb 17 11:14:33 2017 @@ -94,6 +94,16 @@ </td> </tr> <tr class="rowColor"> +<td class="colFirst"><a href="#org.apache.poi.openxml4j.util">org.apache.poi.openxml4j.util</a></td> +<td class="colLast"> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><a href="#org.apache.poi.poifs.filesystem">org.apache.poi.poifs.filesystem</a></td> +<td class="colLast"> +<div class="block">filesystem package maps OLE 2 Compound document files to a more familiar filesystem interface.</div> +</td> +</tr> +<tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.sl.draw">org.apache.poi.sl.draw</a></td> <td class="colLast"> </td> </tr> @@ -167,6 +177,42 @@ </tbody> </table> </li> +<li class="blockList"><a name="org.apache.poi.openxml4j.util"> +<!-- --> +</a> +<h3>Uses of <a href="../../../../../org/apache/poi/util/SuppressForbidden.html" title="annotation in org.apache.poi.util">SuppressForbidden</a> in <a href="../../../../../org/apache/poi/openxml4j/util/package-summary.html">org.apache.poi.openxml4j.util</a></h3> +<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> +<caption><span>Methods in <a href="../../../../../org/apache/poi/openxml4j/util/package-summary.html">org.apache.poi.openxml4j.util</a> with annotations of type <a href="../../../../../org/apache/poi/util/SuppressForbidden.html" title="annotation in org.apache.poi.util">SuppressForbidden</a></span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tbody> +<tr class="altColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><span class="strong">ZipSecureFile.ThresholdInputStream.</span><code><strong><a href="../../../../../org/apache/poi/openxml4j/util/ZipSecureFile.ThresholdInputStream.html#available()">available</a></strong>()</code> </td> +</tr> +</tbody> +</table> +</li> +<li class="blockList"><a name="org.apache.poi.poifs.filesystem"> +<!-- --> +</a> +<h3>Uses of <a href="../../../../../org/apache/poi/util/SuppressForbidden.html" title="annotation in org.apache.poi.util">SuppressForbidden</a> in <a href="../../../../../org/apache/poi/poifs/filesystem/package-summary.html">org.apache.poi.poifs.filesystem</a></h3> +<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> +<caption><span>Methods in <a href="../../../../../org/apache/poi/poifs/filesystem/package-summary.html">org.apache.poi.poifs.filesystem</a> with annotations of type <a href="../../../../../org/apache/poi/util/SuppressForbidden.html" title="annotation in org.apache.poi.util">SuppressForbidden</a></span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tbody> +<tr class="altColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><span class="strong">DocumentInputStream.</span><code><strong><a href="../../../../../org/apache/poi/poifs/filesystem/DocumentInputStream.html#available()">available</a></strong>()</code> </td> +</tr> +</tbody> +</table> +</li> <li class="blockList"><a name="org.apache.poi.sl.draw"> <!-- --> </a> @@ -207,6 +253,14 @@ </td> </tr> <tr class="rowColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><span class="strong">LittleEndianInputStream.</span><code><strong><a href="../../../../../org/apache/poi/util/LittleEndianInputStream.html#available()">available</a></strong>()</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><span class="strong">BoundedInputStream.</span><code><strong><a href="../../../../../org/apache/poi/util/BoundedInputStream.html#available()">available</a></strong>()</code></td> +</tr> +<tr class="rowColor"> <td class="colFirst"><code>static java.util.Locale</code></td> <td class="colLast"><span class="strong">LocaleUtil.</span><code><strong><a href="../../../../../org/apache/poi/util/LocaleUtil.html#getUserLocale()">getUserLocale</a></strong>()</code> </td> </tr> Modified: poi/site/publish/apidocs/org/apache/poi/util/package-use.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/package-use.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/package-use.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/package-use.html Fri Feb 17 11:14:33 2017 @@ -247,6 +247,14 @@ HSSF concepts.</div> <td class="colLast"> </td> </tr> <tr class="altColor"> +<td class="colFirst"><a href="#org.apache.poi.openxml4j.opc.internal">org.apache.poi.openxml4j.opc.internal</a></td> +<td class="colLast"> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><a href="#org.apache.poi.openxml4j.util">org.apache.poi.openxml4j.util</a></td> +<td class="colLast"> </td> +</tr> +<tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.poifs.crypt">org.apache.poi.poifs.crypt</a></td> <td class="colLast"> <div class="block">Implementation of the <a href="http://msdn.microsoft.com/en-us/library/dd952186(v=office.12).aspx">ECMA-376 Document Encryption</a></div> @@ -620,12 +628,17 @@ Compound Document Format.</div> </td> </tr> <tr class="rowColor"> +<td class="colOne"><a href="../../../../org/apache/poi/util/class-use/NotImplemented.html#org.apache.poi.hpsf">NotImplemented</a> +<div class="block">This feature has not been implemented yet.</div> +</td> +</tr> +<tr class="altColor"> <td class="colOne"><a href="../../../../org/apache/poi/util/class-use/Removal.html#org.apache.poi.hpsf">Removal</a> <div class="block">Program elements annotated @Removal track the earliest final release when a deprecated feature will be removed.</div> </td> </tr> -<tr class="altColor"> +<tr class="rowColor"> <td class="colOne"><a href="../../../../org/apache/poi/util/class-use/SuppressForbidden.html#org.apache.poi.hpsf">SuppressForbidden</a> <div class="block">Marking class for elements to be ignored by the forbidden apis check</div> </td> @@ -1255,6 +1268,41 @@ Compound Document Format.</div> </tbody> </table> </li> +<li class="blockList"><a name="org.apache.poi.openxml4j.opc.internal"> +<!-- --> +</a> +<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> +<caption><span>Classes in <a href="../../../../org/apache/poi/util/package-summary.html">org.apache.poi.util</a> used by <a href="../../../../org/apache/poi/openxml4j/opc/internal/package-summary.html">org.apache.poi.openxml4j.opc.internal</a></span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Class and Description</th> +</tr> +<tbody> +<tr class="altColor"> +<td class="colOne"><a href="../../../../org/apache/poi/util/class-use/Removal.html#org.apache.poi.openxml4j.opc.internal">Removal</a> +<div class="block">Program elements annotated @Removal track the earliest final release + when a deprecated feature will be removed.</div> +</td> +</tr> +</tbody> +</table> +</li> +<li class="blockList"><a name="org.apache.poi.openxml4j.util"> +<!-- --> +</a> +<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> +<caption><span>Classes in <a href="../../../../org/apache/poi/util/package-summary.html">org.apache.poi.util</a> used by <a href="../../../../org/apache/poi/openxml4j/util/package-summary.html">org.apache.poi.openxml4j.util</a></span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Class and Description</th> +</tr> +<tbody> +<tr class="altColor"> +<td class="colOne"><a href="../../../../org/apache/poi/util/class-use/SuppressForbidden.html#org.apache.poi.openxml4j.util">SuppressForbidden</a> +<div class="block">Marking class for elements to be ignored by the forbidden apis check</div> +</td> +</tr> +</tbody> +</table> +</li> <li class="blockList"><a name="org.apache.poi.poifs.crypt"> <!-- --> </a> @@ -1434,6 +1482,11 @@ Compound Document Format.</div> <tr class="rowColor"> <td class="colOne"><a href="../../../../org/apache/poi/util/class-use/LittleEndianInput.html#org.apache.poi.poifs.filesystem">LittleEndianInput</a> </td> </tr> +<tr class="altColor"> +<td class="colOne"><a href="../../../../org/apache/poi/util/class-use/SuppressForbidden.html#org.apache.poi.poifs.filesystem">SuppressForbidden</a> +<div class="block">Marking class for elements to be ignored by the forbidden apis check</div> +</td> +</tr> </tbody> </table> </li> Modified: poi/site/publish/apidocs/overview-tree.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/overview-tree.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/apidocs/overview-tree.html (original) +++ poi/site/publish/apidocs/overview-tree.html Fri Feb 17 11:14:33 2017 @@ -487,7 +487,7 @@ <li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Counta.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Counta</span></a> (implements org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Function.html" title="interface in org.apache.poi.ss.formula.functions">Function</a>)</li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Countif.ErrorMatcher.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countif.ErrorMatcher</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Countif.StringMatcher.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countif.StringMatcher</span></a></li> -<li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Countifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countifs</span></a> (implements org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a>)</li> +<li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Countifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Countifs</span></a></li> <li type="circle">org.apache.poi.poifs.crypt.cryptoapi.<a href="org/apache/poi/poifs/crypt/cryptoapi/CryptoAPIEncryptionInfoBuilder.html" title="class in org.apache.poi.poifs.crypt.cryptoapi"><span class="strong">CryptoAPIEncryptionInfoBuilder</span></a> (implements org.apache.poi.poifs.crypt.<a href="org/apache/poi/poifs/crypt/EncryptionInfoBuilder.html" title="interface in org.apache.poi.poifs.crypt">EncryptionInfoBuilder</a>)</li> <li type="circle">org.apache.poi.poifs.crypt.<a href="org/apache/poi/poifs/crypt/CryptoFunctions.html" title="class in org.apache.poi.poifs.crypt"><span class="strong">CryptoFunctions</span></a></li> <li type="circle">org.apache.poi.sl.draw.binding.<a href="org/apache/poi/sl/draw/binding/CTAdjPoint2D.html" title="class in org.apache.poi.sl.draw.binding"><span class="strong">CTAdjPoint2D</span></a></li> @@ -2528,7 +2528,7 @@ <li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Substitute.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Substitute</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Subtotal.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Subtotal</span></a> (implements org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Function.html" title="interface in org.apache.poi.ss.formula.functions">Function</a>)</li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Sumif.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumif</span></a></li> -<li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Sumifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumifs</span></a> (implements org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/FreeRefFunction.html" title="interface in org.apache.poi.ss.formula.functions">FreeRefFunction</a>)</li> +<li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Sumifs.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumifs</span></a></li> <li type="circle">org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Sumproduct.html" title="class in org.apache.poi.ss.formula.functions"><span class="strong">Sumproduct</span></a> (implements org.apache.poi.ss.formula.functions.<a href="org/apache/poi/ss/formula/functions/Function.html" title="interface in org.apache.poi.ss.formula.functions">Function</a>)</li> <li type="circle">org.apache.poi.xssf.streaming.<a href="org/apache/poi/xssf/streaming/SXSSFCell.html" title="class in org.apache.poi.xssf.streaming"><span class="strong">SXSSFCell</span></a> (implements org.apache.poi.ss.usermodel.<a href="org/apache/poi/ss/usermodel/Cell.html" title="interface in org.apache.poi.ss.usermodel">Cell</a>)</li> <li type="circle">org.apache.poi.xssf.streaming.<a href="org/apache/poi/xssf/streaming/SXSSFCreationHelper.html" title="class in org.apache.poi.xssf.streaming"><span class="strong">SXSSFCreationHelper</span></a> (implements org.apache.poi.ss.usermodel.<a href="org/apache/poi/ss/usermodel/CreationHelper.html" title="interface in org.apache.poi.ss.usermodel">CreationHelper</a>)</li> Modified: poi/site/publish/howtobuild.html URL: http://svn.apache.org/viewvc/poi/site/publish/howtobuild.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/howtobuild.html (original) +++ poi/site/publish/howtobuild.html Fri Feb 17 11:14:33 2017 @@ -303,13 +303,16 @@ if (VERSION > 3) { <p> - The POI build system requires <a href="https://forrest.apache.org/">Apache Forrest</a> to build the documentation. + The POI build system requires + <a href="https://forrest.apache.org/">Apache Forrest</a> + to build the documentation. </p> <p> - Specifically the build has been tested to work with Forrest 0.5.x. This is an <strong>old release</strong> which is available - <a href="https://archive.apache.org/dist/forrest/pre-0.6/">here</a>. - </p> + Specifically the build has been tested to work with Forrest 0.5.x. + This is an <strong>old release</strong> which is available + <a href="https://archive.apache.org/dist/forrest/pre-0.6/">here</a>. + </p> <p> Remember to set the FORREST_HOME environment variable. @@ -470,21 +473,14 @@ if (VERSION > 3) { </div> -<p>Linux: <span class="codefrag">export FORREST_HOME=/opt/apache-forrest-0.5.1-bin/</span> - -<br> - -<a href="https://help.ubuntu.com/community/EnvironmentVariables">help.ubuntu.com</a>, +<p>Linux: + <a href="https://help.ubuntu.com/community/EnvironmentVariables">help.ubuntu.com</a>, <a href="http://unix.stackexchange.com/questions/117467/how-to-permanently-set-environmental-variables">unix.stackexchange.com</a> </p> <p>Windows: - <span class="codefrag">set FORREST_HOME C:\apache-forrest-0.5.1-bin\</span> - -<br> - -<a href="https://en.wikipedia.org/wiki/Environment_variable#DOS.2C_OS.2F2_and_Windows">en.wikipedia.org</a> + <a href="https://en.wikipedia.org/wiki/Environment_variable#DOS.2C_OS.2F2_and_Windows">en.wikipedia.org</a> </p> Modified: poi/site/publish/who.html URL: http://svn.apache.org/viewvc/poi/site/publish/who.html?rev=1783372&r1=1783371&r2=1783372&view=diff ============================================================================== --- poi/site/publish/who.html (original) +++ poi/site/publish/who.html Fri Feb 17 11:14:33 2017 @@ -363,6 +363,8 @@ if (VERSION > 3) { <li>Maxim Valyanskiy (maxcom at apache dot org)</li> <li>Sergey Vladimirov (sergey at apache dot org)</li> + +<li>Greg Woolsey (gwoolsey at apache dot org)</li> </ul> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
