From commits-return-12929-archive-asf-public=cust-asf.ponee.io@pdfbox.apache.org Tue Aug 14 10:08:32 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 683491807CC for ; Tue, 14 Aug 2018 10:08:28 +0200 (CEST) Received: (qmail 62289 invoked by uid 500); 14 Aug 2018 08:08:27 -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 60798 invoked by uid 99); 14 Aug 2018 08:08:25 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Aug 2018 08:08:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4B024E1190; Tue, 14 Aug 2018 08:08:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: msahyoun@apache.org To: commits@pdfbox.apache.org Date: Tue, 14 Aug 2018 08:08:51 -0000 Message-Id: In-Reply-To: <7a1ba0dcb1be4d2cab650fdba22669d6@git.apache.org> References: <7a1ba0dcb1be4d2cab650fdba22669d6@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [29/53] [partial] pdfbox-docs git commit: PDFBOX-3330: add javadoc for 2.0.9, 2.0.10, 2.0.11 http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CMapParser.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CMapParser.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CMapParser.html new file mode 100644 index 0000000..149eeb8 --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CMapParser.html @@ -0,0 +1,366 @@ + + + + + + +CMapParser (PDFBox reactor 2.0.10 API) + + + + + + + + + + + +
+
org.apache.fontbox.cmap
+

Class CMapParser

+
+
+ +
+
    +
  • +
    +
    +
    public class CMapParser
    +extends Object
    +
    Parses a CMap stream.
    +
    +
    Author:
    +
    Ben Litchfield
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CMapParser

        +
        public CMapParser()
        +
        Creates a new instance of CMapParser.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        parse

        +
        public CMap parse(File file)
        +           throws IOException
        +
        Parse a CMAP file on the file system.
        +
        +
        Parameters:
        +
        file - The file to parse.
        +
        Returns:
        +
        A parsed CMAP file.
        +
        Throws:
        +
        IOException - If there is an issue while parsing the CMAP.
        +
        +
      • +
      + + + +
        +
      • +

        parsePredefined

        +
        public CMap parsePredefined(String name)
        +                     throws IOException
        +
        Parses a predefined CMap.
        +
        +
        Parameters:
        +
        name - CMap name.
        +
        Returns:
        +
        The parsed predefined CMap as a java object, never null.
        +
        Throws:
        +
        IOException - If the CMap could not be parsed.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CMap parse(InputStream input)
        +           throws IOException
        +
        This will parse the stream and create a cmap object.
        +
        +
        Parameters:
        +
        input - The CMAP stream to parse.
        +
        Returns:
        +
        The parsed stream as a java object, never null.
        +
        Throws:
        +
        IOException - If there is an error parsing the stream.
        +
        +
      • +
      + + + +
        +
      • +

        getExternalCMap

        +
        protected InputStream getExternalCMap(String name)
        +                               throws IOException
        +
        Returns an input stream containing the given "use" CMap.
        +
        +
        Parameters:
        +
        name - Name of the given "use" CMap resource.
        +
        Throws:
        +
        IOException - if the CMap resource doesn't exist or if there is an error opening its + stream.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CodespaceRange.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CodespaceRange.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CodespaceRange.html new file mode 100644 index 0000000..16e6124 --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/CodespaceRange.html @@ -0,0 +1,361 @@ + + + + + + +CodespaceRange (PDFBox reactor 2.0.10 API) + + + + + + + + + + + +
+
org.apache.fontbox.cmap
+

Class CodespaceRange

+
+
+ +
+
    +
  • +
    +
    +
    public class CodespaceRange
    +extends Object
    +
    This represents a single entry in the codespace range.
    +
    +
    Author:
    +
    Ben Litchfield
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CodespaceRange

        +
        public CodespaceRange()
        +
        Creates a new instance of CodespaceRange.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getCodeLength

        +
        public int getCodeLength()
        +
        Returns the length of the codes of the codespace.
        +
        +
        Returns:
        +
        the code length
        +
        +
      • +
      + + + +
        +
      • +

        getEnd

        +
        public byte[] getEnd()
        +
        Getter for property end.
        +
        +
        Returns:
        +
        Value of property end.
        +
        +
      • +
      + + + +
        +
      • +

        getStart

        +
        public byte[] getStart()
        +
        Getter for property start.
        +
        +
        Returns:
        +
        Value of property start.
        +
        +
      • +
      + + + +
        +
      • +

        matches

        +
        public boolean matches(byte[] code)
        +
        Returns true if the given code bytes match this codespace range.
        +
      • +
      + + + +
        +
      • +

        isFullMatch

        +
        public boolean isFullMatch(byte[] code,
        +                           int codeLen)
        +
        Returns true if the given code bytes match this codespace range.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMap.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMap.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMap.html new file mode 100644 index 0000000..65be3a9 --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMap.html @@ -0,0 +1,219 @@ + + + + + + +Uses of Class org.apache.fontbox.cmap.CMap (PDFBox reactor 2.0.10 API) + + + + + + + + + + +
+

Uses of Class
org.apache.fontbox.cmap.CMap

+
+
+ +
+ + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMapParser.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMapParser.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMapParser.html new file mode 100644 index 0000000..6188d52 --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CMapParser.html @@ -0,0 +1,125 @@ + + + + + + +Uses of Class org.apache.fontbox.cmap.CMapParser (PDFBox reactor 2.0.10 API) + + + + + + + + + + +
+

Uses of Class
org.apache.fontbox.cmap.CMapParser

+
+
No usage of org.apache.fontbox.cmap.CMapParser
+ + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CodespaceRange.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CodespaceRange.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CodespaceRange.html new file mode 100644 index 0000000..9b9083a --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/class-use/CodespaceRange.html @@ -0,0 +1,125 @@ + + + + + + +Uses of Class org.apache.fontbox.cmap.CodespaceRange (PDFBox reactor 2.0.10 API) + + + + + + + + + + +
+

Uses of Class
org.apache.fontbox.cmap.CodespaceRange

+
+
No usage of org.apache.fontbox.cmap.CodespaceRange
+ + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-frame.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-frame.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-frame.html new file mode 100644 index 0000000..5533cef --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.apache.fontbox.cmap (PDFBox reactor 2.0.10 API) + + + + +

org.apache.fontbox.cmap

+
+

Classes

+ +
+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-summary.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-summary.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-summary.html new file mode 100644 index 0000000..1999752 --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-summary.html @@ -0,0 +1,166 @@ + + + + + + +org.apache.fontbox.cmap (PDFBox reactor 2.0.10 API) + + + + + + + + + + +
+

Package org.apache.fontbox.cmap

+
+
This package holds classes that are necessary to parse cmap files.
+
+

See: Description

+
+
+
    +
  • + + + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    CMap +
    This class represents a CMap file.
    +
    CMapParser +
    Parses a CMap stream.
    +
    CodespaceRange +
    This represents a single entry in the codespace range.
    +
    +
  • +
+ + + +

Package org.apache.fontbox.cmap Description

+
This package holds classes that are necessary to parse cmap files.
+
+ + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-tree.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-tree.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-tree.html new file mode 100644 index 0000000..93c4f27 --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-tree.html @@ -0,0 +1,140 @@ + + + + + + +org.apache.fontbox.cmap Class Hierarchy (PDFBox reactor 2.0.10 API) + + + + + + + + + + +
+

Hierarchy For Package org.apache.fontbox.cmap

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/dd18b3e2/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-use.html ---------------------------------------------------------------------- diff --git a/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-use.html b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-use.html new file mode 100644 index 0000000..8b80596 --- /dev/null +++ b/content/docs/2.0.10/javadocs/org/apache/fontbox/cmap/package-use.html @@ -0,0 +1,185 @@ + + + + + + +Uses of Package org.apache.fontbox.cmap (PDFBox reactor 2.0.10 API) + + + + + + + + + + +
+

Uses of Package
org.apache.fontbox.cmap

+
+
+ +
+ + + + +

Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.

+ +