All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.swiftboot.fileconvert.Convert Maven / Gradle / Ivy

The newest version!
package org.swiftboot.fileconvert;

import java.io.InputStream;
import java.io.OutputStream;
import java.util.List;

/**
 * @author swiftech
 **/
public interface Convert {

    String[] supportedSourceFileType();

    String targetFileType();

    List convert(InputStream inputStream, ConvertCallback convertCallback) throws ConvertException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy