public interface IConversionJobWithSourceSpecified
| Modifier and Type | Method and Description |
|---|---|
IConversionJobWithTargetUnspecified |
to(File target)
Configures the current conversion to write the result to the specified file target.
|
IConversionJobWithTargetUnspecified |
to(File target,
IFileConsumer callback)
Configures the current conversion to write the result to the specified file target.
|
IConversionJobWithTargetUnspecified |
to(IInputStreamConsumer callback)
Configures the current conversion to write the result to invoke the given callback when the conversion
terminates.
|
IConversionJobWithTargetUnspecified |
to(OutputStream target)
Configures the current conversion to write the result to the specified
OutputStream. |
IConversionJobWithTargetUnspecified |
to(OutputStream target,
boolean closeStream)
Configures the current conversion to write the result to the specified
OutputStream. |
IConversionJobWithTargetUnspecified to(File target)
target - The file to which the result of the conversion will be written. Existing files will
be overwritten. If the file is locked by the JVM or any other application or is not writable,
the conversion will abort with an error.IConversionJobWithTargetUnspecified to(File target, IFileConsumer callback)
target - The file to which the result of the conversion will be written. Existing files will
be overwritten. If the file is locked by the JVM or any other application or is not writable,
the conversion will abort with an error.callback - A callback that is invoked when the conversion terminates.IConversionJobWithTargetUnspecified to(OutputStream target)
OutputStream. The stream
will be closed after the conversion is written.target - The output stream to which the conversion result is written to.IConversionJobWithTargetUnspecified to(OutputStream target, boolean closeStream)
OutputStream.target - The output stream to which the conversion result is written to.closeStream - Determines whether the output stream is closed after writting the result.IConversionJobWithTargetUnspecified to(IInputStreamConsumer callback)
callback - A callback that is invoked when the conversion terminates.Copyright © 2013–2016. All rights reserved.