From commits-return-5442-apmail-poi-commits-archive=poi.apache.org@poi.apache.org Tue Jan 13 22:16:13 2015 Return-Path: X-Original-To: apmail-poi-commits-archive@minotaur.apache.org Delivered-To: apmail-poi-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0FFAF103F1 for ; Tue, 13 Jan 2015 22:16:12 +0000 (UTC) Received: (qmail 98670 invoked by uid 500); 13 Jan 2015 22:16:13 -0000 Delivered-To: apmail-poi-commits-archive@poi.apache.org Received: (qmail 98581 invoked by uid 500); 13 Jan 2015 22:16:13 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 98560 invoked by uid 99); 13 Jan 2015 22:16:13 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jan 2015 22:16:13 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 1C9F7AC04B2; Tue, 13 Jan 2015 22:16:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1651521 [3/3] - in /poi/site/publish/apidocs: ./ org/apache/poi/ddf/ org/apache/poi/ddf/class-use/ org/apache/poi/poifs/filesystem/class-use/ org/apache/poi/ss/formula/eval/class-use/ org/apache/poi/ss/formula/functions/ org/apache/poi/ss/... Date: Tue, 13 Jan 2015 22:16:11 -0000 To: commits@poi.apache.org From: nick@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150113221613.1C9F7AC04B2@hades.apache.org> Added: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/DStarRunner.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/DStarRunner.html?rev=1651521&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/DStarRunner.html (added) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/DStarRunner.html Tue Jan 13 22:16:10 2015 @@ -0,0 +1,307 @@ + + + + +DStarRunner (POI API Documentation) + + + + + + + + + + +
+
org.apache.poi.ss.formula.functions
+

Class DStarRunner

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.poi.ss.formula.functions.DStarRunner
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Function, Function3Arg
    +
    +
    +
    +
    public final class DStarRunner
    +extends java.lang.Object
    +implements Function3Arg
    +
    This class performs a D* calculation. It takes an IDStarAlgorithm object and + uses it for calculating the result value. Iterating a database and checking the + entries against the set of conditions is done here.
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        evaluate

        +
        public final ValueEval evaluate(ValueEval[] args,
        +                 int srcRowIndex,
        +                 int srcColumnIndex)
        +
        +
        Specified by:
        +
        evaluate in interface Function
        +
        Parameters:
        args - the evaluated function arguments. Empty values are represented with + BlankEval or MissingArgEval, never null.
        srcRowIndex - row index of the cell containing the formula under evaluation
        srcColumnIndex - column index of the cell containing the formula under evaluation
        +
        Returns:
        The evaluated result, possibly an ErrorEval, never null. + Note - Excel uses the error code #NUM! instead of IEEE NaN, so when + numeric functions evaluate to Double.NaN be sure to translate the result to ErrorEval.NUM_ERROR.
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

+ Copyright 2015 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/IDStarAlgorithm.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/IDStarAlgorithm.html?rev=1651521&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/IDStarAlgorithm.html (added) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/IDStarAlgorithm.html Tue Jan 13 22:16:10 2015 @@ -0,0 +1,254 @@ + + + + +IDStarAlgorithm (POI API Documentation) + + + + + + + + + + +
+
org.apache.poi.ss.formula.functions
+

Interface IDStarAlgorithm

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    DGet, DMin
    +
    +
    +
    +
    public interface IDStarAlgorithm
    +
    Interface specifying how an algorithm to be used by DStarRunner should look like. + Each implementing class should correspond to one of the D* functions.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      ValueEvalgetResult() +
      Return a result ValueEval that will be the result of the calculation.
      +
      booleanprocessMatch(ValueEval eval) +
      Process a match that is found during a run through a database.
      +
      voidreset() +
      Reset the state of this algorithm.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        reset

        +
        void reset()
        +
        Reset the state of this algorithm. + This is called before each run through a database.
        +
      • +
      + + + +
        +
      • +

        processMatch

        +
        boolean processMatch(ValueEval eval)
        +
        Process a match that is found during a run through a database.
        +
        Parameters:
        eval - ValueEval of the cell in the matching row. References will already be resolved.
        +
        Returns:
        Whether we should continue iterating through the database.
        +
      • +
      + + + +
        +
      • +

        getResult

        +
        ValueEval getResult()
        +
        Return a result ValueEval that will be the result of the calculation. + This is always called at the end of a run through the database.
        +
        Returns:
        a ValueEval
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

+ Copyright 2015 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DGet.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DGet.html?rev=1651521&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DGet.html (added) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DGet.html Tue Jan 13 22:16:10 2015 @@ -0,0 +1,117 @@ + + + + +Uses of Class org.apache.poi.ss.formula.functions.DGet (POI API Documentation) + + + + + + + + + +
+

Uses of Class
org.apache.poi.ss.formula.functions.DGet

+
+
No usage of org.apache.poi.ss.formula.functions.DGet
+ + + + +

+ Copyright 2015 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DMin.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DMin.html?rev=1651521&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DMin.html (added) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DMin.html Tue Jan 13 22:16:10 2015 @@ -0,0 +1,117 @@ + + + + +Uses of Class org.apache.poi.ss.formula.functions.DMin (POI API Documentation) + + + + + + + + + +
+

Uses of Class
org.apache.poi.ss.formula.functions.DMin

+
+
No usage of org.apache.poi.ss.formula.functions.DMin
+ + + + +

+ Copyright 2015 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DStarRunner.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DStarRunner.html?rev=1651521&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DStarRunner.html (added) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/DStarRunner.html Tue Jan 13 22:16:10 2015 @@ -0,0 +1,117 @@ + + + + +Uses of Class org.apache.poi.ss.formula.functions.DStarRunner (POI API Documentation) + + + + + + + + + +
+

Uses of Class
org.apache.poi.ss.formula.functions.DStarRunner

+
+
No usage of org.apache.poi.ss.formula.functions.DStarRunner
+ + + + +

+ Copyright 2015 The Apache Software Foundation or + its licensors, as applicable. +

+ + Added: poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/IDStarAlgorithm.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/IDStarAlgorithm.html?rev=1651521&view=auto ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/IDStarAlgorithm.html (added) +++ poi/site/publish/apidocs/org/apache/poi/ss/formula/functions/class-use/IDStarAlgorithm.html Tue Jan 13 22:16:10 2015 @@ -0,0 +1,178 @@ + + + + +Uses of Interface org.apache.poi.ss.formula.functions.IDStarAlgorithm (POI API Documentation) + + + + + + + + + +
+

Uses of Interface
org.apache.poi.ss.formula.functions.IDStarAlgorithm

+
+
+ +
+ + + + +

+ Copyright 2015 The Apache Software Foundation or + its licensors, as applicable. +

+ + Modified: poi/site/publish/apidocs/org/apache/poi/util/CodePageUtil.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/CodePageUtil.html?rev=1651521&r1=1651520&r2=1651521&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/CodePageUtil.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/CodePageUtil.html Tue Jan 13 22:16:10 2015 @@ -323,94 +323,102 @@ extends java.lang.Object static int +CP_MAC_ROMAN_BIFF23  + + +static int CP_MAC_ROMANIA
Codepage for Macintosh Romanian (Java: MacRomania)
- + static int CP_MAC_THAI
Codepage for Macintosh Thai (Java: MacThai)
- + static int CP_MAC_TURKISH
Codepage for Macintosh Turkish (Java: MacTurkish)
- + static int CP_MAC_UKRAINE
Codepage for Macintosh Ukrainian (Java: MacUkraine)
- + static int CP_MS949
Codepage for MS949
- + static int CP_SJIS
Codepage for SJIS
- + static int CP_UNICODE
Codepage for Unicode
- + static int CP_US_ACSII
Codepage for US-ASCII
- + static int CP_US_ASCII2
Another codepage for US-ASCII
- + static int CP_UTF16
Codepage for UTF-16
- + static int CP_UTF16_BE
Codepage for UTF-16 big-endian
- + static int CP_UTF8
Codepage for UTF-8
- + static int CP_WINDOWS_1250
Codepage for Windows 1250
- + static int CP_WINDOWS_1251
Codepage for Windows 1251
- + static int CP_WINDOWS_1252
Codepage for Windows 1252
+ +static int +CP_WINDOWS_1252_BIFF23  + static int CP_WINDOWS_1253 @@ -641,6 +649,16 @@ extends java.lang.Object
See Also:
Constant Field Values
+ + + +
    +
  • +

    CP_WINDOWS_1252_BIFF23

    +
    public static final int CP_WINDOWS_1252_BIFF23
    +
    See Also:
    Constant Field Values
    +
  • +
@@ -729,6 +747,16 @@ extends java.lang.Object
See Also:
Constant Field Values
+ + + +
    +
  • +

    CP_MAC_ROMAN_BIFF23

    +
    public static final int CP_MAC_ROMAN_BIFF23
    +
    See Also:
    Constant Field Values
    +
  • +
Modified: poi/site/publish/apidocs/org/apache/poi/util/class-use/LittleEndianByteArrayOutputStream.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/util/class-use/LittleEndianByteArrayOutputStream.html?rev=1651521&r1=1651520&r2=1651521&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/util/class-use/LittleEndianByteArrayOutputStream.html (original) +++ poi/site/publish/apidocs/org/apache/poi/util/class-use/LittleEndianByteArrayOutputStream.html Tue Jan 13 22:16:10 2015 @@ -166,11 +166,11 @@ void -BinaryRC4EncryptionHeader.write(LittleEndianByteArrayOutputStream littleendianbytearrayoutputstream)  +BinaryRC4EncryptionVerifier.write(LittleEndianByteArrayOutputStream bos)  void -BinaryRC4EncryptionVerifier.write(LittleEndianByteArrayOutputStream bos)  +BinaryRC4EncryptionHeader.write(LittleEndianByteArrayOutputStream littleendianbytearrayoutputstream)  Modified: poi/site/publish/apidocs/org/apache/poi/xssf/streaming/SXSSFSheet.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/org/apache/poi/xssf/streaming/SXSSFSheet.html?rev=1651521&r1=1651520&r2=1651521&view=diff ============================================================================== --- poi/site/publish/apidocs/org/apache/poi/xssf/streaming/SXSSFSheet.html (original) +++ poi/site/publish/apidocs/org/apache/poi/xssf/streaming/SXSSFSheet.html Tue Jan 13 22:16:10 2015 @@ -950,7 +950,10 @@ implements createRow in interface Sheet
Parameters:
rownum - row number
-
Returns:
high level Row object representing a row in the sheet
See Also:
removeRow(Row)
+
Returns:
high level Row object representing a row in the sheet
+
Throws:
+
java.lang.IllegalArgumentException - If the max. number of rows is exceeded or + a rownum is provided where the row is already flushed to disk.
See Also:
removeRow(Row)
--------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org