Class PlanNodeHelper.AllDataset
- java.lang.Object
-
- org.eclipse.rdf4j.sail.shacl.ast.planNodes.PlanNodeHelper.AllDataset
-
- All Implemented Interfaces:
Dataset
- Enclosing class:
- PlanNodeHelper
static final class PlanNodeHelper.AllDataset extends java.lang.Object implements Dataset
-
-
Field Summary
Fields Modifier and Type Field Description private static java.util.Set<IRI>empty(package private) static PlanNodeHelper.AllDatasetinstance
-
Constructor Summary
Constructors Constructor Description AllDataset()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<IRI>getDefaultGraphs()Gets the default graph URIs of this dataset.IRIgetDefaultInsertGraph()Gets the default insert graph URI of this dataset.java.util.Set<IRI>getDefaultRemoveGraphs()Gets the default remove graph URIs of this dataset.java.util.Set<IRI>getNamedGraphs()Gets the named graph URIs of this dataset.
-
-
-
Field Detail
-
instance
static final PlanNodeHelper.AllDataset instance
-
empty
private static final java.util.Set<IRI> empty
-
-
Method Detail
-
getDefaultRemoveGraphs
public java.util.Set<IRI> getDefaultRemoveGraphs()
Description copied from interface:DatasetGets the default remove graph URIs of this dataset. An empty set indicates the the store's default behaviour should be used, if not otherwise indicated in the operation.- Specified by:
getDefaultRemoveGraphsin interfaceDataset
-
getDefaultInsertGraph
public IRI getDefaultInsertGraph()
Description copied from interface:DatasetGets the default insert graph URI of this dataset. An null value indicates that the store's default behaviour should be used, if not otherwise indicated in the operation.- Specified by:
getDefaultInsertGraphin interfaceDataset
-
getDefaultGraphs
public java.util.Set<IRI> getDefaultGraphs()
Description copied from interface:DatasetGets the default graph URIs of this dataset. An empty default graph set and a non-empty named graph set indicates that the default graph is an empty graph. However, if both the default graph set and the named graph set are empty, that indicates that the store's default behaviour should be used.- Specified by:
getDefaultGraphsin interfaceDataset
-
getNamedGraphs
public java.util.Set<IRI> getNamedGraphs()
Description copied from interface:DatasetGets the named graph URIs of this dataset. An empty named graph set and a non-empty default graph set indicates that there are no named graphs. However, if both the default graph set and the named graph set are empty, that indicates that the store's default behaviour should be used.- Specified by:
getNamedGraphsin interfaceDataset
-
-