Uses of Class
org.ghost4j.document.DocumentException
-
Packages that use DocumentException Package Description org.ghost4j org.ghost4j.analyzer org.ghost4j.converter org.ghost4j.document org.ghost4j.modifier org.ghost4j.renderer -
-
Uses of DocumentException in org.ghost4j
Methods in org.ghost4j that throw DocumentException Modifier and Type Method Description protected void
AbstractComponent. assertDocumentSupported(Document document)
Assert a given document instance is supported by the converter -
Uses of DocumentException in org.ghost4j.analyzer
Methods in org.ghost4j.analyzer that throw DocumentException Modifier and Type Method Description java.util.List<AnalysisItem>
AbstractAnalyzer. analyze(Document document)
java.util.List<AnalysisItem>
AbstractRemoteAnalyzer. analyze(Document document)
java.util.List<AnalysisItem>
Analyzer. analyze(Document document)
Analyzes a given document and outputs result as a list of AnalysisItem objects.private InkAnalysisItem
InkAnalyzer. analyzeSinglePage(Document page)
Performs ink analysis on a single page document.protected abstract java.util.List<AnalysisItem>
AbstractAnalyzer. run(Document document)
protected abstract java.util.List<AnalysisItem>
AbstractRemoteAnalyzer. run(Document document)
java.util.List<AnalysisItem>
FontAnalyzer. run(Document document)
java.util.List<AnalysisItem>
InkAnalyzer. run(Document document)
-
Uses of DocumentException in org.ghost4j.converter
Methods in org.ghost4j.converter that throw DocumentException Modifier and Type Method Description void
AbstractConverter. convert(Document document, java.io.OutputStream outputStream)
void
AbstractRemoteConverter. convert(Document document, java.io.OutputStream outputStream)
void
Converter. convert(Document document, java.io.OutputStream outputStream)
Converts a given document and output results in provided output stream.byte[]
AbstractRemoteConverter. remoteConvert(Document document)
protected abstract void
AbstractConverter. run(Document document, java.io.OutputStream outputStream)
protected abstract void
AbstractRemoteConverter. run(Document document, java.io.OutputStream outputStream)
void
PDFConverter. run(Document document, java.io.OutputStream outputStream)
Run method called to perform the actual process of the converter.void
PSConverter. run(Document document, java.io.OutputStream outputStream)
-
Uses of DocumentException in org.ghost4j.document
Methods in org.ghost4j.document that throw DocumentException Modifier and Type Method Description void
AbstractDocument. append(Document document)
void
Document. append(Document document)
Append pages of another document to the current document.void
PDFDocument. append(Document document)
void
PSDocument. append(Document document)
This methods appends pages the DSC way (only by relying on the structure).protected void
AbstractDocument. assertValidPageIndex(int index)
Assert the given page index is valid for the current document.protected void
AbstractDocument. assertValidPageRange(int begin, int end)
Assert the given page range is valid for the current document.java.util.List<Document>
AbstractDocument. explode()
java.util.List<Document>
Document. explode()
Separate each pages to a new document.Document
Document. extract(int begin, int end)
Return a new document containing pages of a given range.Document
PDFDocument. extract(int begin, int end)
Document
PSDocument. extract(int begin, int end)
int
Document. getPageCount()
Return document page countint
PDFDocument. getPageCount()
int
PSDocument. getPageCount()
-
Uses of DocumentException in org.ghost4j.modifier
Methods in org.ghost4j.modifier that throw DocumentException Modifier and Type Method Description Document
AbstractModifier. modify(Document source, java.util.Map<java.lang.String,java.io.Serializable> parameters)
Document
AbstractRemoteModifier. modify(Document source, java.util.Map<java.lang.String,java.io.Serializable> parameters)
Document
Modifier. modify(Document source, java.util.Map<java.lang.String,java.io.Serializable> parameters)
Modify a document with optional parametersDocument
AbstractRemoteModifier. remoteModify(Document source, java.util.Map<java.lang.String,java.io.Serializable> parameters)
protected abstract Document
AbstractModifier. run(Document source, java.util.Map<java.lang.String,java.io.Serializable> parameters)
protected abstract Document
AbstractRemoteModifier. run(Document source, java.util.Map<java.lang.String,java.io.Serializable> parameters)
protected Document
SafeAppenderModifier. run(Document source, java.util.Map<java.lang.String,java.io.Serializable> parameters)
-
Uses of DocumentException in org.ghost4j.renderer
Methods in org.ghost4j.renderer that throw DocumentException Modifier and Type Method Description java.util.List<PageRaster>
AbstractRemoteRenderer. remoteRender(Document document, int begin, int end)
java.util.List<PageRaster>
RemoteRenderer. remoteRender(Document document, int begin, int end)
Renders pages of a given document an outputs result as a list of PageRaster objects (on image per page).java.util.List<java.awt.Image>
AbstractRemoteRenderer. render(Document document)
java.util.List<java.awt.Image>
AbstractRemoteRenderer. render(Document document, int begin, int end)
java.util.List<java.awt.Image>
AbstractRenderer. render(Document document)
java.util.List<java.awt.Image>
AbstractRenderer. render(Document document, int begin, int end)
java.util.List<java.awt.Image>
Renderer. render(Document document)
Renders a given document an outputs result as a list of Image objects (on image per page).java.util.List<java.awt.Image>
Renderer. render(Document document, int begin, int end)
Renders pages of a given document an outputs result as a list of Image objects (on image per page).protected abstract java.util.List<PageRaster>
AbstractRemoteRenderer. run(Document document, int begin, int end)
protected abstract java.util.List<java.awt.Image>
AbstractRenderer. run(Document document, int begin, int end)
java.util.List<PageRaster>
SimpleRenderer. run(Document document, int begin, int end)
-