Uses of Class
com.storedobject.pdf.PDFTable
Packages that use PDFTable
-
Uses of PDFTable in com.storedobject.pdf
Subclasses of PDFTable in com.storedobject.pdfModifier and TypeClassDescriptionclass
PDF.ObjectFormTable<T extends StoredObject>
Define a table whereStoredObject
instances can be added in a "form" style (Each attribute is printed in a separate row).class
PDF.ObjectTable<T extends StoredObject>
Define a table whereStoredObject
instances can be added as rows.Methods in com.storedobject.pdf that return PDFTableModifier and TypeMethodDescriptionstatic PDFTable
PDF.createTable
(int columnCount) Creates a table that can fit 100% to document's width.static PDFTable
PDF.createTable
(int... relativeWidths) Creates a table that can fit 100% to document's width.TableHeader.createTable
(PDF pdf) Create aPDFTable
from this header.PDFReport.createTitleTable
(HasContacts hasContacts, Iterable<String> captions) This is a helper method to create a "title table" from aHasContacts
instance.PDFReport.createTitleTable
(HasContacts hasContacts, String... captions) This is a helper method to create a "title table" from aHasContacts
instance.PDFReport.createTitleTable
(Iterable<String> captions) This is a helper method to create a "title table" from a list of captions.PDFReport.createTitleTable
(String... captions) This is a helper method to create a "title table" from a list of captions.PDFReport.getTitleTable()
Get the "title table" part of the report.Methods in com.storedobject.pdf with parameters of type PDFTableModifier and TypeMethodDescriptionvoid
PDF.addBlankRow
(PDFTable table) Adds a blank row to the table.void
PDF.addBlankRow
(PDFTable table, int fromColumn) Adds a blank row to the table.void
PDF.addBlankRow
(PDFTable table, int fromColumn, int toColumn) Adds a blank row to the table.void
void
PDF.addTitles
(PDFTable table, int pointSize, StringList titles) Add title texts to table.void
Add title texts to table.void
Add title texts to table.void
PDF.addTitles
(PDFTable table, StringList titles) Add title texts to table.void
Add title texts to table.void
void
PDF.addToTable
(PDFTable table, Object any) Adds an object to the given PDFTable as a PDFCell.void
PDF.addToTable
(PDFTable table, Object any, boolean rightAligned) Adds an object to the given PDFTable as a PDFCell.void
PDF.addToTable
(PDFTable table, Object any, boolean rightAligned, Function<PDFCell, PDFCell> cellCustomizer) Adds an object to the given PDFTable as a PDFCell.void
PDF.addToTable
(PDFTable table, Object any, int horizontalAlignment) Adds an object to the given PDFTable as a PDFCell.void
PDF.addToTable
(PDFTable table, Object any, int horizontalAlignment, int verticalAlignment) Adds an object to the given PDFTable as a PDFCell.void
PDF.addToTable
(PDFTable table, Object any, int horizontalAlignment, int verticalAlignment, Function<PDFCell, PDFCell> cellCustomizer) Adds an object to the given PDFTable as a PDFCell.void
PDF.addToTable
(PDFTable table, Object any, int horizontalAlignment, Function<PDFCell, PDFCell> cellCustomizer) Adds an object to the given PDFTable as a PDFCell.void
Adds an object to the given PDFTable as a PDFCell.void
PDF.addToTableCentered
(PDFTable table, Object any) Adds an object to the given PDFTable as a PDFCell.void
Adds an object to the given PDFTable as a PDFCell.boolean
Draw the table at the current position till the end of the page.boolean
Draw the table at the given position till the end of the page.boolean
Draw the table within the given rectangular area.Constructors in com.storedobject.pdf with parameters of type PDFTable -
Uses of PDFTable in com.storedobject.report
Methods in com.storedobject.report that return PDFTable -
Uses of PDFTable in com.storedobject.ui
Fields in com.storedobject.ui declared as PDFTable