public abstract class ExporterBase extends Object
| Constructor and Description |
|---|
ExporterBase() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
exportBarcodes(Iterable<PageBarcodeArea> barcodes,
OutputStream outputStream)
Exports the collection of barcodes to the stream.
|
void |
exportBarcodes(Iterable<PageBarcodeArea> barcodes,
String fileName)
Exports the collection of barcodes to the file.
|
abstract void |
exportDocumentData(DocumentData documentData,
OutputStream outputStream)
Exports document data to the stream.
|
void |
exportDocumentData(DocumentData documentData,
String fileName)
Exports document data to the file.
|
abstract void |
exportDocumentInfo(IDocumentInfo documentInfo,
OutputStream outputStream)
Exports the document information to the stream.
|
void |
exportDocumentInfo(IDocumentInfo documentInfo,
String fileName)
Exports the document information to the file.
|
abstract void |
exportMetadata(Iterable<MetadataItem> metadata,
OutputStream outputStream)
Exports the collection of metadata to the stream.
|
void |
exportMetadata(Iterable<MetadataItem> metadata,
String fileName)
Exports the collection of metadata to the file.
|
abstract void |
exportTables(Iterable<PageTableArea> tables,
OutputStream outputStream)
Exports the collection of tables to the stream.
|
void |
exportTables(Iterable<PageTableArea> tables,
String fileName)
Exports the collection of tables to the file.
|
abstract void |
exportTextAreas(Iterable<PageTextArea> textAreas,
OutputStream outputStream)
Exports the collection of text areas to the stream.
|
void |
exportTextAreas(Iterable<PageTextArea> textAreas,
String fileName)
Exports the collection of text areas to the file.
|
public abstract void exportMetadata(Iterable<MetadataItem> metadata, OutputStream outputStream)
metadata - The collection of metadata.outputStream - The output stream.public void exportMetadata(Iterable<MetadataItem> metadata, String fileName)
metadata - The collection of metadata.fileName - The full path to the output file.public abstract void exportDocumentInfo(IDocumentInfo documentInfo, OutputStream outputStream)
documentInfo - The document information.outputStream - The output stream.public void exportDocumentInfo(IDocumentInfo documentInfo, String fileName)
documentInfo - The document information.fileName - The full path to the output file.public abstract void exportTextAreas(Iterable<PageTextArea> textAreas, OutputStream outputStream)
textAreas - The collection of the text areas.outputStream - The output stream.public void exportTextAreas(Iterable<PageTextArea> textAreas, String fileName)
textAreas - The collection of text areas.fileName - The full path to the output file.public abstract void exportTables(Iterable<PageTableArea> tables, OutputStream outputStream)
tables - The collection of tables.outputStream - The output stream.public void exportTables(Iterable<PageTableArea> tables, String fileName)
tables - The collection of tables.fileName - The full path to the output file.public abstract void exportBarcodes(Iterable<PageBarcodeArea> barcodes, OutputStream outputStream)
barcodes - The collection of barcodes.outputStream - The output stream.public void exportBarcodes(Iterable<PageBarcodeArea> barcodes, String fileName)
barcodes - The collection of barcodes.fileName - The full path to the output file.public abstract void exportDocumentData(DocumentData documentData, OutputStream outputStream)
documentData - Document data.outputStream - The output stream.public void exportDocumentData(DocumentData documentData, String fileName)
documentData - Document data.fileName - The full path to the output file.Copyright © 2026. All rights reserved.