Uses of Class
com.extractpdf4j.helpers.Table

Packages that use Table
Package
Description
Implements the primary PDF parsing strategies and extraction components used to convert document content into structured tabular output.
  • Uses of Table in com.extractpdf4j.parsers

    Methods in com.extractpdf4j.parsers that return types with arguments of type Table
    Modifier and Type
    Method
    Description
    protected List<Table>
    BaseParser.finalizeResults(List<Table> tables, String sourcePath)
    Normalizes parser output for "no tables" situations.
    BaseParser.parse()
    Parses the configured pages from the PDF file.
    abstract List<Table>
    BaseParser.parse(org.apache.pdfbox.pdmodel.PDDocument document)
    Parses a previously loaded PDF document.
    HybridParser.parse(org.apache.pdfbox.pdmodel.PDDocument document)
     
    LatticeParser.parse(org.apache.pdfbox.pdmodel.PDDocument document)
     
    OcrStreamParser.parse(org.apache.pdfbox.pdmodel.PDDocument document)
     
    StreamParser.parse(org.apache.pdfbox.pdmodel.PDDocument document)
     
    protected abstract List<Table>
    BaseParser.parsePage(int page)
    Parses a single page or the entire document.
    protected List<Table>
    HybridParser.parsePage(int page)
    Runs stream, lattice, and OCR-backed stream for the requested page(s) and returns the best-scoring set of tables.
    protected List<Table>
    LatticeParser.parsePage(int page)
    Deprecated.
    This method loads the document from disk on every call.
    protected List<Table>
    OcrStreamParser.parsePage(int page)
    Deprecated.
    This method loads the document from disk on every call.
    protected List<Table>
    StreamParser.parsePage(int page)
    Deprecated.
    This method loads the document from disk on every call.
    Method parameters in com.extractpdf4j.parsers with type arguments of type Table
    Modifier and Type
    Method
    Description
    protected List<Table>
    BaseParser.finalizeResults(List<Table> tables, String sourcePath)
    Normalizes parser output for "no tables" situations.