Uses of Interface
com.snowtide.pdf.layout.Table
-
Packages that use Table Package Description com.snowtide.pdf.util This package contains utility classes implementing various PDFxStream capabilities, including Kodak print data extraction, extracting tabular data from PDF documents in CSV format, and merging multiple PDF documents into one. -
-
Uses of Table in com.snowtide.pdf.util
Methods in com.snowtide.pdf.util that return types with arguments of type Table Modifier and Type Method Description static List<Table>
TableUtils. getAllTables(Page p)
Methods in com.snowtide.pdf.util with parameters of type Table Modifier and Type Method Description static String
TableUtils. convertToCSV(Table table, char delim)
CallsTableUtils.convertToCSV(Table, char, String)
with the specifiedTable
, cell delimiter, and a single linefeed (\n) as a linebreak sequence.static String
TableUtils. convertToCSV(Table table, char delim, String linebreak)
Returns a CSV-formatted String based on the contents of the givenTable
, using the specified character as a cell delimiter and the specified String as a linebreak sequence.static String[][]
TableUtils. tableToStrings(Table table)
Returns a two-dimensional array of Strings carrying the contents of the givenTable
in row/cell order.
-