Class ValidationOptions
- java.lang.Object
-
- com.pdftools.internal.NativeBase
-
- com.pdftools.internal.NativeObject
-
- com.pdftools.pdfa.validation.ValidationOptions
-
public class ValidationOptions extends NativeObject
The PDF validation options
Options to check the quality and standard conformance of documents using the validator's methodValidator.validate(com.pdftools.pdf.Document)
.
-
-
Constructor Summary
Constructors Constructor Description ValidationOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Conformance
getConformance()
The conformance to be validated (Getter)void
setConformance(Conformance value)
The conformance to be validated (Setter)-
Methods inherited from class com.pdftools.internal.NativeObject
equals, hashCode
-
-
-
-
Method Detail
-
getConformance
public Conformance getConformance()
The conformance to be validated (Getter)
The required conformance or
null
to validate the document's claimed conformance, i.e.pdftools.pdf.Document.getConformance
.The PDF validation verifies if the input document conforms to all standards associated with this conformance.
Note that it is generally only meaningful to validate the claimed conformance of a document.
Default value:
null
, i.e. validate the document's claimed conformance.
-
setConformance
public void setConformance(Conformance value)
The conformance to be validated (Setter)
The required conformance or
null
to validate the document's claimed conformance, i.e.pdftools.pdf.Document.getConformance
.The PDF validation verifies if the input document conforms to all standards associated with this conformance.
Note that it is generally only meaningful to validate the claimed conformance of a document.
Default value:
null
, i.e. validate the document's claimed conformance.
-
-