Package org.xwiki.export.pdf
Interface PDFPrinter<T>
-
- Type Parameters:
T
- the input data type
@Role @Unstable public interface PDFPrinter<T>
Generic interface to print some data as PDF.- Since:
- 14.4.2, 14.5
- Version:
- $Id: f65b9c48cb16e9bdc61f6424b7002a2a4bb1686b $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStream
print(T input)
Prints the specified data as PDF.
-
-
-
Method Detail
-
print
InputStream print(T input) throws IOException
Prints the specified data as PDF.- Parameters:
input
- the data to be printed as PDF- Returns:
- the PDF input stream
- Throws:
IOException
-
-