|
|||||||
| 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.SingletonExpressionCompiler
com.saxonica.codegen.StringJoinCompiler
public class StringJoinCompiler
Generate Java code to implement the string-join function
| Constructor Summary | |
|---|---|
StringJoinCompiler()
|
|
| Method Summary | |
|---|---|
void |
compileAsLoop(CompilerService compiler,
Expression expr,
LoopAction action)
Compile an expression in the form of a loop. |
String |
compileToCharSequence(CompilerService compiler,
Expression expr)
Generate Java code to evaluate the expression as a CharSequence |
String |
compileToCharSequenceOLD(CompilerService compiler,
Expression expr)
Compile Java code whose effect is to compute the string value of the expression; the generated code returns a CharSequence. |
String |
compileToItem(CompilerService compiler,
Expression expr)
Generate Java code to evaluate the expression as an Item |
| Methods inherited from class com.saxonica.codegen.SingletonExpressionCompiler |
|---|
compilePush, compileToEffectiveBooleanValue, compileToIterator |
| Methods inherited from class com.saxonica.codegen.ExpressionCompiler |
|---|
compileAsLoopWithContext, compileToValueRepresentation |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public StringJoinCompiler()
| Method Detail |
|---|
public String compileToItem(CompilerService compiler,
Expression expr)
ExpressionCompiler
compileToItem in class ExpressionCompilercompiler - 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 String compileToCharSequenceOLD(CompilerService compiler,
Expression expr)
expr - The expression to be compiled
public String compileToCharSequence(CompilerService compiler,
Expression expr)
ExpressionCompiler
compileToCharSequence in class SingletonExpressionCompilercompiler - the compiler serviceexpr - the expression to be compiled
CharSequence,
and which will hold the string value of the 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
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||