![JAR search and dependency download from the Maven repository](/logo.png)
com.esec.text.pdf.collection.PdfCollectionSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esec-itext Show documentation
Show all versions of esec-itext Show documentation
This library is used to sign PDFs.
The newest version!
package com.esec.text.pdf.collection;
import com.esec.text.pdf.PdfDictionary;
import com.esec.text.pdf.PdfName;
public class PdfCollectionSchema extends PdfDictionary {
/**
* Creates a Collection Schema dictionary.
*/
public PdfCollectionSchema() {
super(PdfName.COLLECTIONSCHEMA);
}
/**
* Adds a Collection field to the Schema.
* @param name the name of the collection field
* @param field a Collection Field
*/
public void addField(String name, PdfCollectionField field) {
put(new PdfName(name), field);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy