|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Objectcom.saxonica.codegen.ExpressionCompiler
com.saxonica.codegen.SequenceExpressionCompiler
com.saxonica.codegen.LazyExpressionCompiler
public class LazyExpressionCompiler
Compile code for a LazyExpression - an expression which is always evaluated lazily
| Constructor Summary | |
|---|---|
LazyExpressionCompiler()
|
|
| 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 |
java.lang.String |
compileToCharSequence(CompilerService compiler,
Expression expr)
Generate Java code to evaluate the expression as a CharSequence |
java.lang.String |
compileToEffectiveBooleanValue(CompilerService compiler,
Expression expr,
ReturnAction options)
Generate Java code to evaluate the effective boolean value of the expression |
static java.lang.String |
compileToEvaluableItem(CompilerService compiler,
LazyExpression exp)
|
java.lang.String |
compileToItem(CompilerService compiler,
Expression expr)
Generate Java code to evaluate the expression as an Item |
java.lang.String |
compileToIterator(CompilerService compiler,
Expression expr)
Generate Java code to evaluate the expression as a SequenceIterator |
| Methods inherited from class com.saxonica.codegen.ExpressionCompiler |
|---|
compileToValueRepresentation |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LazyExpressionCompiler()
| Method Detail |
|---|
public java.lang.String compileToIterator(CompilerService compiler,
Expression expr)
ExpressionCompiler
compileToIterator in class ExpressionCompilercompiler - 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 expression
public void compilePush(CompilerService compiler,
Expression expr)
ExpressionCompiler
compilePush in class SequenceExpressionCompilercompiler - the compiler serviceexpr - the expression to be compiled
public java.lang.String compileToItem(CompilerService compiler,
Expression expr)
ExpressionCompiler
compileToItem in class SequenceExpressionCompilercompiler - the compiler serviceexpr - the expression to be compiled
Item,
and which will hold the value of the expression at run-time (or hold null,
representing an empty sequence).
public java.lang.String compileToEffectiveBooleanValue(CompilerService compiler,
Expression expr,
ReturnAction options)
ExpressionCompiler
compileToEffectiveBooleanValue in class SequenceExpressionCompilercompiler - the compiler serviceexpr - the XPath expression to be compiledoptions - indicates how the boolean result is to be returned
public java.lang.String compileToCharSequence(CompilerService compiler,
Expression expr)
ExpressionCompiler
compileToCharSequence in class SequenceExpressionCompilercompiler - the compiler serviceexpr - the XPath expression to be compiled
CharSequence,
and which will hold the string value of the XPath expression at run-time
public void compileAsLoop(CompilerService compiler,
Expression expr,
LoopAction action)
compileAsLoop in class ExpressionCompilercompiler - the CompilerServiceexpr - the expression to be compiledaction - the action to be taken to process each item in the sequence returned by the expression
public static java.lang.String compileToEvaluableItem(CompilerService compiler,
LazyExpression exp)
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||