| com.hp.hpl.jena.reasoner.ValidityReport
All known Subclasses: com.hp.hpl.jena.reasoner.StandardValidityReport,
ValidityReport | public interface ValidityReport (Code) | | Data structure used to report the results of validation
or consistency checking operations. It is an array of reports,
each of which has a severity, a type (string) and a description (string).
author: Dave Reynolds version: $Revision: 1.14 $ on $Date: 2008/01/02 12:07:00 $ |
Inner Class :static class Report | |
Method Summary | |
public Iterator | getReports() Return an iterator over the separate ValidityReport.Report records. | public boolean | isClean() Returns true if the model is both valid (logically consistent) and no
warnings were generated. | public boolean | isValid() Returns true if no logical inconsistencies were detected. |
getReports | public Iterator getReports()(Code) | | Return an iterator over the separate ValidityReport.Report records.
|
isClean | public boolean isClean()(Code) | | Returns true if the model is both valid (logically consistent) and no
warnings were generated.
|
isValid | public boolean isValid()(Code) | | Returns true if no logical inconsistencies were detected. If it is false
then ether will be at least one error Report included. If it is true
then warnings may still
be present. As of Jena 2.2 we regard classes which can't be instantiated
as warnings (of type 'Inconsistent class') rather than errors.
|
|
|