Interface OfficeConverterResult
-
- All Superinterfaces:
AutoCloseable
,Closeable
@Unstable public interface OfficeConverterResult extends Closeable
Provide the result of an office file conversion. This interface mainly returns the paths of the various files created during the conversion. It extendsCloseable
to allow cleaning the artifacts wheneverCloseable.close()
is called.- Since:
- 13.1RC1
- Version:
- $Id: 3af565129a87edb8866abed3d4fb1cf96df5e1c3 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<File>
getAllFiles()
File
getOutputDirectory()
File
getOutputFile()
-
-
-
Method Detail
-
getOutputFile
File getOutputFile()
- Returns:
- the output file of the conversion.
-
getOutputDirectory
File getOutputDirectory()
- Returns:
- the directory containing all output files.
-
getAllFiles
Set<File> getAllFiles()
- Returns:
- all files created during the conversion, including
getOutputFile()
.
-
-