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;
}