Package com.pdftools.pdfa.validation
Class ValidationResult
- java.lang.Object
-
- com.pdftools.internal.NativeBase
-
- com.pdftools.internal.NativeObject
-
- com.pdftools.pdfa.validation.ValidationResult
-
public class ValidationResult extends NativeObject
The PDF validation result
Result of the validator's methodValidator.validate(com.pdftools.pdf.Document)
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Conformance
getConformance()
The validated conformance (Getter)boolean
getIsConforming()
Whether the document is conforming (Getter)-
Methods inherited from class com.pdftools.internal.NativeObject
equals, hashCode
-
-
-
-
Method Detail
-
getConformance
public Conformance getConformance()
The validated conformance (Getter)
-
getIsConforming
public boolean getIsConforming()
Whether the document is conforming (Getter)
Whether the document conforms to all standards referenced to thegetConformance()
. Any issues found are reported asValidator.ErrorListener
.
-
-