Class SourcePlan
- java.lang.Object
-
- fr.mines_stetienne.ci.sparql_generate.engine.BindOrSourcePlan
-
- fr.mines_stetienne.ci.sparql_generate.engine.SourcePlan
-
- All Implemented Interfaces:
BindingsClausePlan
public class SourcePlan extends BindOrSourcePlan
Executes a
clause.SOURCE <node> ACCEPT <mime> AS <var>
- Author:
- Maxime Lefrançois
-
-
Field Summary
Fields Modifier and Type Field Description static Pattern
pattern
-
Fields inherited from class fr.mines_stetienne.ci.sparql_generate.engine.BindOrSourcePlan
var
-
-
Constructor Summary
Constructors Constructor Description SourcePlan(Node node, Node accept, Var var)
The generation plan of a
clause.SOURCE <node> ACCEPT <mime> AS <var>
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Binding
exec(Binding binding, Context context)
String
toString()
-
Methods inherited from class fr.mines_stetienne.ci.sparql_generate.engine.BindOrSourcePlan
exec, getVar
-
-
-
-
Field Detail
-
pattern
public static final Pattern pattern
-
-
Constructor Detail
-
SourcePlan
public SourcePlan(Node node, Node accept, Var var)
The generation plan of a
clause.SOURCE <node> ACCEPT <mime> AS <var>
- Parameters:
node
- The IRI or the Variable node where a GET must be operated. Must not be null.accept
- The IRI or the Variable node that represent the accepted Internet Media Type. May be null.var
- The variable to bound the potentially retrieved document. Must not be null.
-
-