Uses of Interface
de.fraunhofer.ipsi.xquery.tree.expression.XQueryExpression

Packages that use XQueryExpression
de.fraunhofer.ipsi.xquery.tree   
de.fraunhofer.ipsi.xquery.tree.expression   
de.fraunhofer.ipsi.xquery.tree.primary   
de.fraunhofer.ipsi.xquery.tree.prolog   
de.fraunhofer.ipsi.xquery.tree.xml   
de.fraunhofer.ipsi.xquery.tree.xpath   
 

Uses of XQueryExpression in de.fraunhofer.ipsi.xquery.tree
 

Methods in de.fraunhofer.ipsi.xquery.tree that return types with arguments of type XQueryExpression
 java.util.List<XQueryExpression> XQuery.getExpressions()
          Method getExpressions
 

Methods in de.fraunhofer.ipsi.xquery.tree with parameters of type XQueryExpression
 void VisitorXQueryPrettyPrint.process(XQueryExpression singleExpr)
          Method process
 

Method parameters in de.fraunhofer.ipsi.xquery.tree with type arguments of type XQueryExpression
 java.util.List<de.fraunhofer.ipsi.ipsixq.coretree.CoreExpression> VisitorXQueryMappingToCore.process(java.util.List<XQueryExpression> list)
          Method process
 

Constructor parameters in de.fraunhofer.ipsi.xquery.tree with type arguments of type XQueryExpression
XQuery(XQueryProlog prolog, java.util.List<XQueryExpression> expr)
          Constructor
 

Uses of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.expression
 

Classes in de.fraunhofer.ipsi.xquery.tree.expression that implement XQueryExpression
 class XQueryArithmeticOperator
          XQuery Interpreter ArtihmeticOperator.
 class XQueryComparisonOperator
          XQuery Interpreter ComparisonOperator.
 class XQueryConditionalExpr
          XQuery Interpreter ConditionalOpertor.
 class XQueryExpressionAbstract
           
 class XQueryExtensionExpr
           
 class XQueryFLWOR
          XQuery Interpreter FLWROperator.
 class XQueryInstanceofExpr
           
 class XQueryLogicalOperator
          XQuery Interpreter LogicalOperator.
 class XQueryQuantifiedExpr
          XQuery Interpreter QuantifiedOperator.
 class XQuerySequenceOperator
          XQuery Interpreter SequenceOperator.
 class XQueryTypeExpr
          XQuery Interpreter DataTypeExpressionOperator.
 class XQueryTypeSwitch
          XQuery Interpreter TypeSwitchOperator.
 class XQueryUnaryOperator
          XQuery Interpreter Unary Operator.
 class XQueryValidateExpr
          XQuery Interpreter ValidateExpr.
 

Methods in de.fraunhofer.ipsi.xquery.tree.expression that return XQueryExpression
 XQueryExpression XQueryTypeSwitch.getDefaultExpression()
          Method getDefaultExpression
 XQueryExpression XQueryConditionalExpr.getElseExpression()
          Method getElseExpression
 XQueryExpression XQueryWhereClause.getExpression()
          Method getExpression
 XQueryExpression XQueryTypeExpr.getExpression()
          Method getExpression
 XQueryExpression XQueryOrderSpec.getExpression()
          Method getExpression
 XQueryExpression XQueryInstanceofExpr.getExpression()
          Method getExpression
 XQueryExpression XQueryCaseClause.getExpression()
          Method getExpression
 XQueryExpression XQueryBinding.getExpression()
          Method getExpression
 XQueryExpression XQueryConditionalExpr.getIfExpression()
          Method getIfExpression
 XQueryExpression XQuerySequenceOperator.getLeft()
          Method getLeft
 XQueryExpression XQueryLogicalOperator.getLeft()
          Method getLeft
 XQueryExpression XQueryComparisonOperator.getLeft()
          Method getLeft
 XQueryExpression XQueryArithmeticOperator.getLeft()
          Method getLeft
 XQueryExpression XQueryUnaryOperator.getOperator()
          Method getOperator
 XQueryExpression XQueryFLWOR.getReturnExpression()
          Method getReturnExpression
 XQueryExpression XQuerySequenceOperator.getRight()
          Method getRight
 XQueryExpression XQueryLogicalOperator.getRight()
          Method getRight
 XQueryExpression XQueryComparisonOperator.getRight()
          Method getRight
 XQueryExpression XQueryArithmeticOperator.getRight()
          Method getRight
 XQueryExpression XQueryQuantifiedExpr.getSatisfiesExpression()
          Method getSatisfiesExpression
 

Methods in de.fraunhofer.ipsi.xquery.tree.expression that return types with arguments of type XQueryExpression
 java.util.List<XQueryExpression> XQueryConditionalExpr.getEvalExpression()
          Method getEvalExpression
 java.util.List<XQueryExpression> XQueryValidateExpr.getExpression()
          Method getExpression
 java.util.List<XQueryExpression> XQueryExtensionExpr.getExpression()
          Returns Expr
 java.util.List<XQueryExpression> XQueryTypeSwitch.getSwitchExpression()
          Method getSwitchExpression
 

Constructors in de.fraunhofer.ipsi.xquery.tree.expression with parameters of type XQueryExpression
XQueryArithmeticOperator(ArithmeticOperatorEnum kind, XQueryExpression left, XQueryExpression right)
          Constructor
XQueryBinding(XQueryVariable var, XQueryExpression expr, XQuerySequenceType type)
          Constructor
XQueryCaseClause(PositionInfo pos, XQuerySequenceType t, XQueryExpression xo)
          Constructor
XQueryCaseClause(PositionInfo pos, XQuerySequenceType t, XQueryExpression xo, XQueryVariable v)
          Constructor
XQueryComparisonOperator(ComparisonOperatorEnum kind, XQueryExpression left, XQueryExpression right)
          Constructor
XQueryConditionalExpr(PositionInfo pos, java.util.List<XQueryExpression> evalexp, XQueryExpression ifexp, XQueryExpression elseExpr)
          Constructor
XQueryFLWOR(java.util.List<? extends XQueryNodeAbstract> flc, XQueryWhereClause xwc, XQueryOrderBy xoc, XQueryExpression returnExpr)
          Constructor
XQueryForClause.XQueryForBinding(XQueryVariable var, XQueryExpression expr, XQuerySequenceType type, XQueryVariable posVar)
           
XQueryInstanceofExpr(XQueryExpression expr, XQuerySequenceType datatype)
          Constructor
XQueryLogicalOperator(LogicalOperatorEnum kind, XQueryExpression left, XQueryExpression right)
          Constructor
XQueryOrderSpec(PositionInfo pos, XQueryExpression xo)
          Constructor
XQueryOrderSpec(PositionInfo pos, XQueryExpression xo, boolean ascending, boolean emptyGreatest, java.lang.String collation)
          Constructor
XQueryQuantifiedExpr(PositionInfo pos, QuantifierEnum kind, java.util.List<XQueryBinding> bind, XQueryExpression sat)
          Constructor
XQuerySequenceOperator(SequenceOperatorEnum kind, XQueryExpression left, XQueryExpression right)
          Constructor
XQueryTypeExpr(TypeOperatorEnum kind, XQueryExpression expr, XQuerySequenceType t)
          Constructor
XQueryTypeSwitch(PositionInfo pos, java.util.List<XQueryExpression> switchexp, java.util.List<XQueryCaseClause> case_cl, XQueryExpression def)
          Constructor
XQueryTypeSwitch(PositionInfo pos, java.util.List<XQueryExpression> switchexp, java.util.List<XQueryCaseClause> case_cl, XQueryVariable var, XQueryExpression def)
          Constructor
XQueryUnaryOperator(PositionInfo pos, UnaryOperatorEnum kind, XQueryExpression expr)
          Constructor
XQueryWhereClause(PositionInfo pos, XQueryExpression expr)
          Constructor
 

Constructor parameters in de.fraunhofer.ipsi.xquery.tree.expression with type arguments of type XQueryExpression
XQueryConditionalExpr(PositionInfo pos, java.util.List<XQueryExpression> evalexp, XQueryExpression ifexp, XQueryExpression elseExpr)
          Constructor
XQueryExtensionExpr(PositionInfo pos, java.util.List<XQueryPragma> pragmas, java.util.List<XQueryExpression> expr)
          Constructor
XQueryTypeSwitch(PositionInfo pos, java.util.List<XQueryExpression> switchexp, java.util.List<XQueryCaseClause> case_cl, XQueryExpression def)
          Constructor
XQueryTypeSwitch(PositionInfo pos, java.util.List<XQueryExpression> switchexp, java.util.List<XQueryCaseClause> case_cl, XQueryVariable var, XQueryExpression def)
          Constructor
XQueryValidateExpr(PositionInfo pos, java.util.List<XQueryExpression> expr)
          Constructor
XQueryValidateExpr(PositionInfo pos, java.util.List<XQueryExpression> expr, ValidationModeEnum validationMode)
          Constructor
 

Uses of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.primary
 

Subinterfaces of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.primary
 interface XQueryPrimaryExpr
           
 

Classes in de.fraunhofer.ipsi.xquery.tree.primary that implement XQueryExpression
 class XQueryContextItemExpr
           
 class XQueryFunctionCall
          XQuery Interpreter FunctionCallOperator.
 class XQueryLiteral
          XQuery Interpreter LiteralOperator.
 class XQueryOrderingExpr
          XQuery Interpreter ArtihmeticOperator.
 class XQueryParenthesizedExpr
          XQuery Interpreter ParenthesizedOperator.
 class XQueryPrimaryExprAbstract
           
 class XQueryVariable
          XQuery Interpreter Variable Operator.
 

Methods in de.fraunhofer.ipsi.xquery.tree.primary that return types with arguments of type XQueryExpression
 java.util.List<XQueryExpression> XQueryOrderingExpr.getExpr()
          Method getLeft
 java.util.List<XQueryExpression> XQueryParenthesizedExpr.getExpressions()
          Method getExpressions
 java.util.List<XQueryExpression> XQueryFunctionCall.getExpressions()
          Method getExpressions
 

Constructor parameters in de.fraunhofer.ipsi.xquery.tree.primary with type arguments of type XQueryExpression
XQueryFunctionCall(PositionInfo pos, QNameExpr n, java.util.List<XQueryExpression> l)
          Constructor
XQueryOrderingExpr(PositionInfo pos, OrderingModeEnum kind, java.util.List<XQueryExpression> expr)
          Constructor
XQueryParenthesizedExpr(PositionInfo pos, java.util.List<XQueryExpression> exprs)
          Constructor
 

Uses of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.prolog
 

Methods in de.fraunhofer.ipsi.xquery.tree.prolog that return XQueryExpression
 XQueryExpression XQueryVarDecl.getExpression()
          Method getExpression
 

Methods in de.fraunhofer.ipsi.xquery.tree.prolog that return types with arguments of type XQueryExpression
 java.util.List<XQueryExpression> XQueryFunctionDecl.getFunctionBody()
          Method getFunctionBody
 

Constructors in de.fraunhofer.ipsi.xquery.tree.prolog with parameters of type XQueryExpression
XQueryVarDecl(PositionInfo pos, XQueryVariable var, XQuerySequenceType type, XQueryExpression expr)
          Constructor
 

Constructor parameters in de.fraunhofer.ipsi.xquery.tree.prolog with type arguments of type XQueryExpression
XQueryFunctionDecl(PositionInfo pos, QNameExpr name, java.util.List<XQueryParameter> params, XQuerySequenceType type, java.util.List<XQueryExpression> body)
          Constructor
 

Uses of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.xml
 

Subinterfaces of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.xml
 interface XQueryXmlExpression
           
 

Classes in de.fraunhofer.ipsi.xquery.tree.xml that implement XQueryExpression
 class XQueryAttribute
          XQuery Interpreter AttributeValue.
 class XQueryCdataSection
           
 class XQueryCompNSConstructor
           
 class XQueryComputedAttributeConstructor
          XQuery Interpreter ElementConstructorOperator.
 class XQueryComputedConstructorAbstract
          XQuery Interpreter ElementConstructorOperator.
 class XQueryComputedDocumentConstructor
           
 class XQueryComputedElementConstructor
          XQuery Interpreter ElementConstructorOperator.
 class XQueryComputedTextConstructor
           
 class XQueryComputedXmlComment
           
 class XQueryCompXmlPi
           
 class XQueryElementConstructor
          XQuery Interpreter ElementConstructorOperator.
 class XQueryEnclosedExpr
           
 class XQueryXmlComment
           
 class XQueryXmlProcessingInstruction
           
 

Methods in de.fraunhofer.ipsi.xquery.tree.xml that return types with arguments of type XQueryExpression
 java.util.List<XQueryExpression> XQueryElementConstructor.getContent()
          Method getContent
 java.util.List<XQueryExpression> XQueryCompXmlPi.getContent()
          Method getContent
 java.util.List<XQueryExpression> XQueryComputedXmlComment.getContent()
          Method getContent
 java.util.List<XQueryExpression> XQueryComputedTextConstructor.getContent()
          Method getContent
 java.util.List<XQueryExpression> XQueryComputedDocumentConstructor.getContent()
          Method getContent
 java.util.List<XQueryExpression> XQueryComputedConstructorAbstract.getContent()
          Method getContent
 java.util.List<XQueryExpression> XQueryAttribute.getContent()
          Method getContent
 java.util.List<XQueryExpression> XQueryEnclosedExpr.getExpressions()
          Method getExpressions
 java.util.List<XQueryExpression> XQueryCompXmlPi.getName()
          Method getName
 java.util.List<XQueryExpression> XQueryComputedConstructorAbstract.getNameExpr()
          Method getNameExpr
 

Constructor parameters in de.fraunhofer.ipsi.xquery.tree.xml with type arguments of type XQueryExpression
XQueryAttribute(PositionInfo pos, QNameExpr x, java.util.List<XQueryExpression> cont)
          Constructor
XQueryComputedAttributeConstructor(PositionInfo pos, java.util.List<XQueryExpression> expr, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedAttributeConstructor(PositionInfo pos, java.util.List<XQueryExpression> expr, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedAttributeConstructor(PositionInfo pos, QNameExpr namespec, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedConstructorAbstract(PositionInfo pos, java.util.List<XQueryExpression> expr, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedConstructorAbstract(PositionInfo pos, java.util.List<XQueryExpression> expr, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedConstructorAbstract(PositionInfo pos, QNameExpr namespec, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedDocumentConstructor(PositionInfo pos, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedElementConstructor(PositionInfo pos, java.util.List<XQueryExpression> expr, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedElementConstructor(PositionInfo pos, java.util.List<XQueryExpression> expr, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedElementConstructor(PositionInfo pos, QNameExpr namespec, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedTextConstructor(PositionInfo pos, java.util.List<XQueryExpression> content)
          Constructor
XQueryComputedXmlComment(PositionInfo pos, java.util.List<XQueryExpression> content)
          Constructor.
XQueryCompXmlPi(PositionInfo pos, java.util.List<XQueryExpression> name, java.util.List<XQueryExpression> content)
          Constructor
XQueryCompXmlPi(PositionInfo pos, java.util.List<XQueryExpression> name, java.util.List<XQueryExpression> content)
          Constructor
XQueryCompXmlPi(PositionInfo pos, java.lang.String ncName, java.util.List<XQueryExpression> content)
          Constructor, a name is explicitly specified by means of an XS_NCName.
XQueryElementConstructor(PositionInfo pos, QNameExpr namespec, java.util.List<XQueryAttribute> attributes, java.util.List<XQueryExpression> content)
          Constructor
XQueryEnclosedExpr(PositionInfo pos, java.util.List<XQueryExpression> expr)
          Constructor
 

Uses of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.xpath
 

Subinterfaces of XQueryExpression in de.fraunhofer.ipsi.xquery.tree.xpath
 interface XQueryNodeTest
           
 interface XQueryStepExpr
           
 

Classes in de.fraunhofer.ipsi.xquery.tree.xpath that implement XQueryExpression
 class XQueryAbbreviatedStep
          This class represents the ".." expression.
 class XQueryAtStep
           
 class XQueryAxisStep
           
 class XQueryKindTest
           
 class XQueryNameTest
           
 class XQueryPathExpr
          XQuery Interpreter PathOperator.
 class XQueryQualifiedStep
          XQuery Interpreter StepOperator.
 

Methods in de.fraunhofer.ipsi.xquery.tree.xpath that return types with arguments of type XQueryExpression
 java.util.List<XQueryExpression> XQueryPredicate.getExpressions()
          Method getExpressions
 

Constructor parameters in de.fraunhofer.ipsi.xquery.tree.xpath with type arguments of type XQueryExpression
XQueryPredicate(PositionInfo pos, java.util.List<XQueryExpression> expr)
          Constructor