|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Objectnet.sf.saxon.expr.Expression
net.sf.saxon.expr.Assignation
net.sf.saxon.expr.ForExpression
public class ForExpression
A ForExpression maps an expression over a sequence. This version works with range variables, it doesn't change the context information
| Field Summary |
|---|
| Fields inherited from class net.sf.saxon.expr.Expression |
|---|
EVALUATE_METHOD, ITERATE_METHOD, PROCESS_METHOD |
| Constructor Summary | |
|---|---|
ForExpression()
|
|
| Method Summary | |
|---|---|
void |
checkPermittedContents(SchemaType parentType,
StaticContext env,
boolean whole)
Check that any elements and attributes constructed or returned by this expression are acceptable in the content model of a given complex type. |
int |
computeCardinality()
Determine the static cardinality of the expression |
Expression |
convertWhereToPredicate(Optimizer opt,
StaticContext env,
ItemType contextItemType)
Convert where clause, if possible, to a predicate. |
void |
display(int level,
PrintStream out,
Configuration config)
Diagnostic print of expression structure |
int |
getImplementationMethod()
An implementation of Expression must provide at least one of the methods evaluateItem(), iterate(), or process(). |
ItemType |
getItemType(TypeHierarchy th)
Determine the data type of the items returned by the expression, if possible |
int |
getPositionVariableNameCode()
|
int |
getRequiredSlots()
Get the number of slots required. |
SequenceIterator |
iterate(XPathContext context)
Iterate over the sequence of values |
int |
markTailFunctionCalls(int nameCode,
int arity)
Mark tail function calls: only possible if the for expression iterates zero or one times. |
Expression |
optimize(Optimizer opt,
StaticContext env,
ItemType contextItemType)
Optimize the expression |
void |
process(XPathContext context)
Process this expression as an instruction, writing results to the current outputter |
void |
setAction(Expression action)
Add the "return" or "satisfies" expression, and fix up all references to the range variable that occur within that expression |
void |
setPositionVariable(RangeVariableDeclaration decl)
Set the reference to the position variable (XQuery only) |
void |
setSlotNumber(int nr)
Set the slot number for the range variable |
Expression |
typeCheck(StaticContext env,
ItemType contextItemType)
Type-check the expression |
| Methods inherited from class net.sf.saxon.expr.Assignation |
|---|
evaluateVariable, getAction, getLocalSlotNumber, getSequence, getVariableDeclaration, getVariableFingerprint, getVariableName, getVariableNameCode, isAssignable, isGlobal, iterateSubExpressions, promote, replaceSubExpression, setSequence, setVariableDeclaration, simplify, suppressValidation |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ForExpression()
| Method Detail |
|---|
public void setPositionVariable(RangeVariableDeclaration decl)
public int getPositionVariableNameCode()
public void setAction(Expression action)
Assignation
setAction in class Assignationaction - the expression that occurs after the "return" keyword of a "for"
expression, the "satisfies" keyword of "some/every", or the ":=" operator of
a "let" expression.
This method must be called after calling setVariableDeclaration()
public void setSlotNumber(int nr)
setSlotNumber in class Assignationpublic int getRequiredSlots()
getRequiredSlots in class Assignation
public Expression typeCheck(StaticContext env,
ItemType contextItemType)
throws XPathException
typeCheck in class Expressionenv - the static context of the expressioncontextItemType - the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPE
StaticError - if an error is discovered during this phase
(typically a type error)
XPathException
public Expression optimize(Optimizer opt,
StaticContext env,
ItemType contextItemType)
throws XPathException
optimize in class Expressionopt - the optimizer in use. This provides access to supporting functions; it also allows
different optimization strategies to be used in different circumstances.env - the static context of the expressioncontextItemType - the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPE
StaticError - if an error is discovered during this phase
(typically a type error)
XPathException
public Expression convertWhereToPredicate(Optimizer opt,
StaticContext env,
ItemType contextItemType)
throws XPathException
XPathException
public int markTailFunctionCalls(int nameCode,
int arity)
markTailFunctionCalls in class Expressionpublic int getImplementationMethod()
getImplementationMethod in class Expression
public void checkPermittedContents(SchemaType parentType,
StaticContext env,
boolean whole)
throws XPathException
checkPermittedContents in class ExpressionXPathException
public SequenceIterator iterate(XPathContext context)
throws XPathException
iterate in interface SequenceIterableiterate in class Expressioncontext - supplies the context for evaluation
XPathException - if any dynamic error occurs evaluating the
expression
public void process(XPathContext context)
throws XPathException
process in class Expressioncontext - The dynamic context, giving access to the current node,
the current variables, etc.
XPathExceptionpublic ItemType getItemType(TypeHierarchy th)
getItemType in class Expressionth -
public int computeCardinality()
public void display(int level,
PrintStream out,
Configuration config)
display in class Expressionlevel - indentation level for this expressionout - Output destination
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||