|
|||||||
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
public abstract class SequenceExpressionCompiler
Superclass for compiling expressions whose natural evaluation mode is "pull", for example, expressions that read and return existing nodes.
Constructor Summary | |
---|---|
SequenceExpressionCompiler()
|
Method Summary | |
---|---|
void |
compilePush(CompilerService compiler,
Expression exp)
Generate Java code to execute the expression in push mode, that is, code to write events to the current output Receiver |
String |
compileToCharSequence(CompilerService compiler,
Expression exp)
Generate Java code to evaluate the expression as a CharSequence |
String |
compileToEffectiveBooleanValue(CompilerService compiler,
Expression expr,
ReturnAction result)
Generate Java code to evaluate the effective boolean value of the expression |
String |
compileToItem(CompilerService compiler,
Expression exp)
Generate Java code to evaluate the expression as an Item |
Methods inherited from class com.saxonica.codegen.ExpressionCompiler |
---|
compileAsLoop, compileToIterator, compileToValueRepresentation |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SequenceExpressionCompiler()
Method Detail |
---|
public String compileToItem(CompilerService compiler, Expression exp)
ExpressionCompiler
compileToItem
in class ExpressionCompiler
compiler
- the compiler serviceexp
- 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 String compileToEffectiveBooleanValue(CompilerService compiler, Expression expr, ReturnAction result)
ExpressionCompiler
compileToEffectiveBooleanValue
in class ExpressionCompiler
compiler
- the compiler serviceexpr
- the XPath expression to be compiledresult
- indicates how the boolean result is to be returned
public void compilePush(CompilerService compiler, Expression exp)
ExpressionCompiler
compilePush
in class ExpressionCompiler
compiler
- the compiler serviceexp
- the expression to be compiledpublic String compileToCharSequence(CompilerService compiler, Expression exp)
ExpressionCompiler
compileToCharSequence
in class ExpressionCompiler
compiler
- the compiler serviceexp
- the XPath expression to be compiled
CharSequence
,
and which will hold the string value of the XPath expression at run-time
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |