Interface Converter
- All Known Subinterfaces:
ExternalConverter
- All Known Implementing Classes:
AnyToThumbnailConverter,BaseOfficeXMLTextConverter,BaseVideoConversionConverter,ChainedConverter,CommandLineBasedConverter,CommandLineConverter,ConvertToPDFPictureConverter,CropPictureConverter,DeckJSPDFConverter,DOCX2TextConverter,FullTextConverter,GoogleDriveBlobConverter,Html2TextConverter,HtmlPreviewConverter,Image2PDFConverter,IWork2PDFConverter,LibreOfficeConverter,Md2HtmlConverter,MD2TextConverter,MSOffice2TextConverter,OOo2TextConverter,PartialTextExtractor,PDF2HtmlConverter,PDF2ImageConverter,PDF2TextConverter,PPTX2TextConverter,ResizePictureConverter,RFC822ToTextConverter,RotationPictureConverter,RTF2TextConverter,ScreenshotConverter,StoryboardConverter,ThumbnailDocumentConverter,UTF8CharsetConverter,VideoConversionConverter,WordPerfect2TextConverter,XL2TextConverter,XLX2TextConverter,XML2TextConverter,XmlZip2TextConverter,Zip2HtmlConverter
public interface Converter
Interface that must be implemented by any contributer Converter class.
There is only one instance of each contributed converter class: that means that the implementation must be thread-safe.
- Author:
- tiry
-
Method Summary
Modifier and TypeMethodDescriptionconvert(BlobHolder blobHolder, Map<String, Serializable> parameters) Main method to handle the real Conversion Job.voidinit(ConverterDescriptor descriptor) Initializes the Converter.
-
Method Details
-
init
Initializes the Converter.This can be used to retrieve some configuration information from the XMap Descriptor.
-
convert
BlobHolder convert(BlobHolder blobHolder, Map<String, Serializable> parameters) throws ConversionExceptionMain method to handle the real Conversion Job.Returned
BlobHoldermust implementCachableBlobHolder, otherwise result won't be cached.- Throws:
ConversionException
-