Uses of Class
org.javarosa.xpath.expr.XPathExpression
| Package | Description |
|---|---|
| org.javarosa.core.model.actions | |
| org.javarosa.core.model.instance | |
| org.javarosa.xpath | |
| org.javarosa.xpath.expr | |
| org.javarosa.xpath.parser | |
| org.javarosa.xpath.parser.ast |
-
Uses of XPathExpression in org.javarosa.core.model.actions
Constructors in org.javarosa.core.model.actions with parameters of type XPathExpression Constructor Description SetValueAction(TreeReference target, XPathExpression value) -
Uses of XPathExpression in org.javarosa.core.model.instance
Methods in org.javarosa.core.model.instance that return types with arguments of type XPathExpression Modifier and Type Method Description List<XPathExpression>TreeReference. getPredicate(int key)List<XPathExpression>TreeReferenceLevel. getPredicates()Method parameters in org.javarosa.core.model.instance with type arguments of type XPathExpression Modifier and Type Method Description voidTreeReference. addPredicate(int key, List<XPathExpression> xpe)TreeReferenceLevelTreeReferenceLevel. setPredicates(List<XPathExpression> xpe)List<TreeReference>AbstractTreeElement. tryBatchChildFetch(String name, int mult, List<XPathExpression> predicates, EvaluationContext evalContext)TODO: Worst method name ever.List<TreeReference>TreeElement. tryBatchChildFetch(String name, int mult, List<XPathExpression> predicates, EvaluationContext evalContext)Constructor parameters in org.javarosa.core.model.instance with type arguments of type XPathExpression Constructor Description TreeReferenceLevel(String name, int multiplicity, List<XPathExpression> predicates) -
Uses of XPathExpression in org.javarosa.xpath
Methods in org.javarosa.xpath that return XPathExpression Modifier and Type Method Description XPathExpressionXPathConditional. getExpr()static XPathExpressionXPathParseTool. parseXPath(String xpath)Constructors in org.javarosa.xpath with parameters of type XPathExpression Constructor Description XPathConditional(XPathExpression expr) -
Uses of XPathExpression in org.javarosa.xpath.expr
Subclasses of XPathExpression in org.javarosa.xpath.expr Modifier and Type Class Description classXPathArithExprclassXPathBinaryOpExprclassXPathBoolExprclassXPathCmpExprclassXPathEqExprclassXPathFilterExprclassXPathFuncExprRepresentation of an xpath function expression.classXPathNumericLiteralclassXPathNumNegExprclassXPathOpExprclassXPathPathExprclassXPathStringLiteralclassXPathUnaryOpExprclassXPathUnionExprclassXPathVariableReferenceFields in org.javarosa.xpath.expr declared as XPathExpression Modifier and Type Field Description XPathExpressionXPathBinaryOpExpr. aXPathExpressionXPathUnaryOpExpr. aXPathExpression[]XPathFuncExpr. argsXPathExpressionXPathBinaryOpExpr. bXPathExpression[]XPathFilterExpr. predicatesXPathExpression[]XPathStep. predicatesXPathExpressionXPathFilterExpr. xMethods in org.javarosa.xpath.expr with parameters of type XPathExpression Modifier and Type Method Description static ObjectXPathFuncExpr. ifThenElse(DataInstance model, EvaluationContext ec, XPathExpression[] args, Object[] argVals)static ObjectXPathFuncExpr. indexedRepeat(DataInstance model, EvaluationContext ec, XPathExpression[] args, Object[] argVals)This provides a method of indexing fields stored in prior repeat groups.booleanXPathPathExpr. matches(XPathExpression o)Warning: this method has somewhat unclear semantics.Constructors in org.javarosa.xpath.expr with parameters of type XPathExpression Constructor Description XPathArithExpr(int op, XPathExpression a, XPathExpression b)XPathBinaryOpExpr(XPathExpression a, XPathExpression b)XPathBoolExpr(int op, XPathExpression a, XPathExpression b)XPathCmpExpr(int op, XPathExpression a, XPathExpression b)XPathEqExpr(boolean equal, XPathExpression a, XPathExpression b)XPathFilterExpr(XPathExpression x, XPathExpression[] predicates)XPathFuncExpr(XPathQName id, XPathExpression[] args)XPathNumNegExpr(XPathExpression a)XPathUnaryOpExpr(XPathExpression a)XPathUnionExpr(XPathExpression a, XPathExpression b) -
Uses of XPathExpression in org.javarosa.xpath.parser
Methods in org.javarosa.xpath.parser that return XPathExpression Modifier and Type Method Description static XPathExpressionParser. parse(Vector<Token> tokens) -
Uses of XPathExpression in org.javarosa.xpath.parser.ast
Methods in org.javarosa.xpath.parser.ast that return XPathExpression Modifier and Type Method Description abstract XPathExpressionASTNode. build()XPathExpressionASTNodeAbstractExpr. build()XPathExpressionASTNodeBinaryOp. build()XPathExpressionASTNodeFilterExpr. build()XPathExpressionASTNodeFunctionCall. build()XPathExpressionASTNodeLocPath. build()XPathExpressionASTNodePathStep. build()XPathExpressionASTNodePredicate. build()XPathExpressionASTNodeUnaryOp. build()