Package org.apache.jena.sparql.core
Class DynamicDatasets
- java.lang.Object
-
- org.apache.jena.sparql.core.DynamicDatasets
-
public class DynamicDatasets extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDynamicDatasets.DynamicDatasetGraph
-
Constructor Summary
Constructors Constructor Description DynamicDatasets()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DatasetGraphdynamicDataset(java.util.Collection<Node> defaultGraphs, java.util.Collection<Node> namedGraphs, DatasetGraph dsg, boolean defaultUnionGraph)Form aDatasetGraphthat is the dynamic dataset from the collections of graphs from the dataset that go to make up the default graph and named graphs.static DatasetdynamicDataset(DatasetDescription description, Dataset ds, boolean defaultUnionGraph)Given a DatasetDescription, form a Dataset that is the dynamic dataset over the base dataset.static DatasetGraphdynamicDataset(DatasetDescription description, DatasetGraph dsg, boolean defaultUnionGraph)Given a DatasetDescription, form a Dataset that is the dynamic dataset over the base dataset.
-
-
-
Method Detail
-
dynamicDataset
public static Dataset dynamicDataset(DatasetDescription description, Dataset ds, boolean defaultUnionGraph)
Given a DatasetDescription, form a Dataset that is the dynamic dataset over the base dataset. Returns the original Dataset if the dataset description is null or empty.
-
dynamicDataset
public static DatasetGraph dynamicDataset(DatasetDescription description, DatasetGraph dsg, boolean defaultUnionGraph)
Given a DatasetDescription, form a Dataset that is the dynamic dataset over the base dataset. Returns the original DatasetGraph if the dataset description is null or empty.
-
dynamicDataset
public static DatasetGraph dynamicDataset(java.util.Collection<Node> defaultGraphs, java.util.Collection<Node> namedGraphs, DatasetGraph dsg, boolean defaultUnionGraph)
Form aDatasetGraphthat is the dynamic dataset from the collections of graphs from the dataset that go to make up the default graph and named graphs.
-
-