de.redsix.pdfcompare.cli.CliArguments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfcompare Show documentation
Show all versions of pdfcompare Show documentation
A simple Java library to compare two PDF files. Files are rendered and compared pixel by pixel.
package de.redsix.pdfcompare.cli;
import java.util.Optional;
public interface CliArguments {
Boolean areAvailable();
Boolean isHelp();
Optional getExpectedFile();
Optional getActualFile();
Optional getOutputFile();
void printHelp();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy