Return-Path: X-Original-To: apmail-pdfbox-commits-archive@www.apache.org Delivered-To: apmail-pdfbox-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E90E3173CA for ; Mon, 30 Mar 2015 05:51:47 +0000 (UTC) Received: (qmail 26880 invoked by uid 500); 30 Mar 2015 05:51:47 -0000 Delivered-To: apmail-pdfbox-commits-archive@pdfbox.apache.org Received: (qmail 26813 invoked by uid 500); 30 Mar 2015 05:51:47 -0000 Mailing-List: contact commits-help@pdfbox.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pdfbox.apache.org Delivered-To: mailing list commits@pdfbox.apache.org Received: (qmail 26303 invoked by uid 99); 30 Mar 2015 05:51:47 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Mar 2015 05:51:47 +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 600BDAC0701 for ; Mon, 30 Mar 2015 05:51:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1669997 [15/49] - in /pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs: ./ org/apache/pdfbox/contentstream/ org/apache/pdfbox/contentstream/class-use/ org/apache/pdfbox/contentstream/operator/ org/apache/pdfbox/contentstream/opera... Date: Mon, 30 Mar 2015 05:51:24 -0000 To: commits@pdfbox.apache.org From: msahyoun@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150330055147.600BDAC0701@hades.apache.org> Modified: pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/class-use/SequentialRead.html URL: http://svn.apache.org/viewvc/pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/class-use/SequentialRead.html?rev=1669997&r1=1669996&r2=1669997&view=diff ============================================================================== --- pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/class-use/SequentialRead.html (original) +++ pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/class-use/SequentialRead.html Mon Mar 30 05:51:10 2015 @@ -2,10 +2,10 @@ - + Uses of Interface org.apache.pdfbox.io.SequentialRead (Apache PDFBox 2.0.0-SNAPSHOT API) - + Modified: pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-frame.html URL: http://svn.apache.org/viewvc/pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-frame.html?rev=1669997&r1=1669996&r2=1669997&view=diff ============================================================================== --- pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-frame.html (original) +++ pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-frame.html Mon Mar 30 05:51:10 2015 @@ -2,10 +2,10 @@ - + org.apache.pdfbox.io (Apache PDFBox 2.0.0-SNAPSHOT API) - + Modified: pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-summary.html URL: http://svn.apache.org/viewvc/pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-summary.html?rev=1669997&r1=1669996&r2=1669997&view=diff ============================================================================== --- pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-summary.html (original) +++ pdfbox/cmssite/trunk/content/docs/2.0.0-SNAPSHOT/javadocs/org/apache/pdfbox/io/package-summary.html Mon Mar 30 05:51:10 2015 @@ -2,10 +2,10 @@ - + org.apache.pdfbox.io (Apache PDFBox 2.0.0-SNAPSHOT API) - + @@ -38,7 +38,7 @@
Returns:
The characters between the current position and the end of the line.
Throws:
IOException - If there is an error reading from the stream.
@@ -869,10 +988,92 @@ protected 

isWhitespace

protected boolean isWhitespace(int c)
-
This will tell if the next byte is whitespace or not. These values are +
This will tell if a character is whitespace or not. These values are specified in table 1 (page 12) of ISO 32000-1:2008.
Parameters:
c - The character to check against whitespace
-
Returns:
true if the next byte in the stream is a whitespace character.
+
Returns:
true if the character is a whitespace character.
+ + +
+ + +
    +
  • +

    isSpace

    +
    protected boolean isSpace()
    +                   throws IOException
    +
    This will tell if the next byte is a space or not.
    +
    Returns:
    true if the next byte in the stream is a space character.
    +
    Throws:
    +
    IOException - If there is an error reading from the stream.
    +
  • +
+ + + +
    +
  • +

    isSpace

    +
    protected boolean isSpace(int c)
    +
    This will tell if the given value is a space or not.
    +
    Parameters:
    c - The character to check against space
    +
    Returns:
    true if the next byte in the stream is a space character.
    +
  • +
+ + + +
    +
  • +

    isDigit

    +
    protected boolean isDigit()
    +                   throws IOException
    +
    This will tell if the next byte is a digit or not.
    +
    Returns:
    true if the next byte in the stream is a digit.
    +
    Throws:
    +
    IOException - If there is an error reading from the stream.
    +
  • +
+ + + +
    +
  • +

    isDigit

    +
    protected boolean isDigit(int c)
    +
    This will tell if the given value is a digit or not.
    +
    Parameters:
    c - The character to be checked
    +
    Returns:
    true if the next byte in the stream is a digit.
    +
  • +
+ + + +
    +
  • +

    isString

    +
    protected boolean isString(byte[] string)
    +                    throws IOException
    +
    Checks if the given string can be found at the current offset.
    +
    Parameters:
    string - the bytes of the string to look for
    +
    Returns:
    true if the bytes are in place, false if not
    +
    Throws:
    +
    IOException - if something went wrong
    +
  • +
+ + + +
    +
  • +

    isString

    +
    protected boolean isString(char[] string)
    +                    throws IOException
    +
    Checks if the given string can be found at the current offset.
    +
    Parameters:
    string - the bytes of the string to look for
    +
    Returns:
    true if the bytes are in place, false if not
    +
    Throws:
    +
    IOException - if something went wrong
@@ -974,17 +1175,24 @@ protected Throws: -
IOException
+
IOException - if something went wrong.
- + @@ -993,7 +1201,7 @@ protected 
  • parseObjectKey

    -
    protected COSObjectKey parseObjectKey(boolean continueOnError)
    +
    protected COSObjectKey parseObjectKey(boolean continueOnError)
                                    throws IOException
    Parse object key (number and generation).
    Parameters:
    continueOnError - true to continue on error, false if not.
    @@ -1029,7 +1237,7 @@ protected