com.mindee.input.PageOptionsOperation 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
package com.mindee.input;
/**
* Possible page operations on a document.
*/
public enum PageOptionsOperation {
/**
* Keep only the specified pages, and remove all others.
*/
KEEP_ONLY,
/**
* Remove the specified pages, and keep all others.
*/
REMOVE
}