com.mindee.pdf.PdfOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindee-api-java Show documentation
Show all versions of mindee-api-java Show documentation
Java Library to call Mindee's Off-The-Shelf and Custom APIs
The newest version!
package com.mindee.pdf;
import java.io.IOException;
/**
* Minimum PDF operations.
*/
public interface PdfOperation {
/**
* Split a PDF file.
*
* @param splitQuery Options to perform the query.
* @return The split pdf.
*/
SplitPdf split(SplitQuery splitQuery) throws IOException;
}