public interface ConversionJobWithSourceSpecified
| Modifier and Type | Method and Description |
|---|---|
@NonNull ConversionJobWithOptionalTargetFormatUnspecified |
to(@NonNull File target)
Configures the current conversion to write the result to the specified target.
|
@NonNull ConversionJobWithRequiredTargetFormatUnspecified |
to(@NonNull OutputStream target)
Configures the current conversion to write the result to the specified
OutputStream. |
@NonNull ConversionJobWithRequiredTargetFormatUnspecified |
to(@NonNull OutputStream target,
boolean closeStream)
Configures the current conversion to write the result to the specified
OutputStream. |
@NonNull ConversionJobWithOptionalTargetFormatUnspecified to(@NonNull 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, an exception will be thrown.@NonNull ConversionJobWithRequiredTargetFormatUnspecified to(@NonNull 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.@NonNull ConversionJobWithRequiredTargetFormatUnspecified to(@NonNull OutputStream target, boolean closeStream)
OutputStream.
The stream will be closed after the conversion is written.target - The output stream to which the conversion result is written to.closeStream - Determines whether the output stream is closed after writing the result.Copyright © 2016 - present; JODConverter.org. All rights reserved.