| com.hp.hpl.jena.graph.query.PatternCompiler
All known Subclasses: com.hp.hpl.jena.graph.query.PatternStageCompiler,
PatternCompiler | public interface PatternCompiler (Code) | | A PatternCompiler is some class that knows how to handle fixed Node values,
binding and bound occurences of variables, and wildcards.
author: kers |
Method Summary | |
public Element | any() Method called to deliver a compiled element from a wildcard ANY. | public Element | bind(Node n, int index) Method called to deliver a compiled element from a binding occurance of a
variable Node allocated at a given index position. | public Element | bound(Node n, int index) Method called to deliver a compiled element from a bound occurance of a
variable Node allocated at a given index position. | public Element | fixed(Node value) Method called to deliver a compiled Element constructed from a constant Node. |
any | public Element any()(Code) | | Method called to deliver a compiled element from a wildcard ANY.
|
bind | public Element bind(Node n, int index)(Code) | | Method called to deliver a compiled element from a binding occurance of a
variable Node allocated at a given index position.
|
bound | public Element bound(Node n, int index)(Code) | | Method called to deliver a compiled element from a bound occurance of a
variable Node allocated at a given index position.
|
fixed | public Element fixed(Node value)(Code) | | Method called to deliver a compiled Element constructed from a constant Node.
|
|
|