You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Implementation of a SHACL engine that allows validation on a per-element basis: {@link #validateElement(Resource)} can be used to retrieve validation
* Constructor to provide a custom RDF model containing SHACL shapes
@@ -77,7 +74,7 @@ public ShaclValidator( final Model shapesModel ) {
77
74
78
75
/**
79
76
* Validates a model element using the SHACL shapes the validator was initialized with.
80
-
* If you have more than one element to validate, prefer the method {@link this.validateElements( final List<Resource> )} to calling this method in a loop
77
+
* If you have more than one element to validate, prefer the method {@link #validateElements(List)} to calling this method in a loop
81
78
* for better performance.
82
79
* {@link Resource#getModel()} on the element must not return null, i.e., the resource may not be created using
83
80
* {@link org.apache.jena.rdf.model.ResourceFactory#createProperty(String)}, but instead must be created via {@link Model#createResource(String)}.
@@ -128,7 +125,8 @@ public List<Violation> validateModel( final VersionedModel model ) {
0 commit comments