Package org.eclipse.rdf4j.sail
Class UpdateContext
- java.lang.Object
-
- org.eclipse.rdf4j.sail.UpdateContext
-
public class UpdateContext extends java.lang.ObjectProvided with add and remove operation to give them context within aUpdateExproperation.
-
-
Field Summary
Fields Modifier and Type Field Description private BindingSetbindingsprivate Datasetdatasetprivate booleanincludeInferredprivate UpdateExprupdateExpr
-
Constructor Summary
Constructors Constructor Description UpdateContext(UpdateExpr updateExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BindingSetgetBindingSet()DatasetgetDataset()UpdateExprgetUpdateExpr()booleanisIncludeInferred()java.lang.StringtoString()
-
-
-
Field Detail
-
updateExpr
private final UpdateExpr updateExpr
-
dataset
private final Dataset dataset
-
bindings
private final BindingSet bindings
-
includeInferred
private final boolean includeInferred
-
-
Constructor Detail
-
UpdateContext
public UpdateContext(UpdateExpr updateExpr, Dataset dataset, BindingSet bindings, boolean includeInferred)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getUpdateExpr
public UpdateExpr getUpdateExpr()
- Returns:
- Returns the updateExpr.
-
getDataset
public Dataset getDataset()
- Returns:
- Returns the dataset.
-
getBindingSet
public BindingSet getBindingSet()
- Returns:
- Returns the bindings.
-
isIncludeInferred
public boolean isIncludeInferred()
- Returns:
- Returns the includeInferred.
-
-