|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.saxonica.codegen.ExpressionCompiler com.saxonica.codegen.SequenceExpressionCompiler com.saxonica.codegen.ForExpressionCompiler
public class ForExpressionCompiler
Compile code to implement a "for" expression (for $x in sequence return action)
Constructor Summary | |
---|---|
ForExpressionCompiler()
|
Method Summary | |
---|---|
void |
compileAsLoop(CompilerService compiler,
Expression expr,
LoopAction action)
Compile an expression in the form of a loop. |
void |
compilePush(CompilerService compiler,
Expression expr)
Generate Java code to execute the expression in push mode, that is, code to write events to the current output Receiver |
String |
compileToIterator(CompilerService compiler,
Expression expr)
Generate Java code to evaluate the expression as a SequenceIterator |
String |
compileToValueRepresentation(CompilerService compiler,
Expression expr)
Generate Java code to evaluate the expression as a ValueRepresentation |
Methods inherited from class com.saxonica.codegen.SequenceExpressionCompiler |
---|
compileToCharSequence, compileToEffectiveBooleanValue, compileToItem |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ForExpressionCompiler()
Method Detail |
---|
public String compileToIterator(CompilerService compiler, Expression expr)
ExpressionCompiler
compileToIterator
in class ExpressionCompiler
compiler
- the compiler serviceexpr
- the XPath expression to be compiled
SequenceIterator
,
and which at run-time will hold an iterator over the the value of the XPath expressionpublic void compilePush(CompilerService compiler, Expression expr)
ExpressionCompiler
compilePush
in class SequenceExpressionCompiler
compiler
- the compiler serviceexpr
- the expression to be compiledpublic void compileAsLoop(CompilerService compiler, Expression expr, LoopAction action)
compileAsLoop
in class ExpressionCompiler
compiler
- the CompilerServiceexpr
- the expression to be compiledaction
- the action to be taken to process each item in the sequence returned by the expressionpublic String compileToValueRepresentation(CompilerService compiler, Expression expr)
ExpressionCompiler
compileToValueRepresentation
in class ExpressionCompiler
compiler
- the compiler serviceexpr
- the expression to be compiled
ValueRepresentation
,
and which at run-time will hold the value of the expression
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |