bitsy-wallet/PDFJet/src/main/java/com/pdfjet/Compliance.java

13 lines
232 B
Java

package com.pdfjet;
/**
* Used to set PDF/A compliance.
* See the constructors in the PDF class.
*
*/
public class Compliance {
public static final int PDF_A_1B = 1;
public static final int PDF_UA = 2;
}