Method from org.apache.jempbox.xmp.pdfa.XMPSchemaPDFAId Detail: |
public String getAmd() {
return getTextProperty( prefix+":amd" );
}
Get the amendment idenitifier. |
public String getConformance() {
return getTextProperty( prefix+":conformance" );
}
Get the conformance level. |
public Integer getPart() {
return getIntegerProperty( prefix+":part" );
}
Get the ISO19005 part number. |
public void setAmd(String amd) {
setTextProperty( prefix+":amd", amd);
}
Set the amendment idenitifier. |
public void setConformance(String conformance) {
setTextProperty( prefix+":conformance", conformance);
}
Set the conformance level. |
public void setPart(Integer part) {
setIntegerProperty( prefix+":part", part);
}
Set the ISO19005 part number. |