Package org.apache.jena.shacl
Class ValidationReport
- java.lang.Object
-
- org.apache.jena.shacl.ValidationReport
-
public class ValidationReport extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ValidationReport.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
conforms()
static ValidationReport.Builder
create()
static ValidationReport
fromGraph(Graph graph)
static ValidationReport
fromGraph(Graph graph, Node node)
static ValidationReport
fromModel(Model model)
java.util.Collection<org.apache.jena.shacl.validation.ReportEntry>
getEntries()
Graph
getGraph()
Model
getModel()
Resource
getResource()
static ValidationReport
reportConformsTrue()
Return an immutable report that records no validation errors (violations or any other level of severity)
-
-
-
Method Detail
-
create
public static ValidationReport.Builder create()
-
reportConformsTrue
public static ValidationReport reportConformsTrue()
Return an immutable report that records no validation errors (violations or any other level of severity)
-
getEntries
public java.util.Collection<org.apache.jena.shacl.validation.ReportEntry> getEntries()
-
getResource
public Resource getResource()
-
getModel
public Model getModel()
-
getGraph
public Graph getGraph()
-
conforms
public boolean conforms()
-
fromGraph
public static ValidationReport fromGraph(Graph graph, Node node)
-
fromModel
public static ValidationReport fromModel(Model model)
-
fromGraph
public static ValidationReport fromGraph(Graph graph)
-
-