Uses of Interface
org.loboevolution.apache.xpath.ExpressionNode
Packages that use ExpressionNode
Package
Description
Implementation of XPath; for the most part, only classes meant for public use are
found at this root level of the XPath packages.
Implementation of XPath LocationPath support -- primary classes are
LocPathIterator and UnionPathIterator.
Implements XPath functions -- each function is derived from Function,
FunctionOneArg, Function2Args, etc, with number-of-arguments checking being
applied mainly at compile time -- this package only implements XPath functions,
XSLT functions are found in the "templates" package.
Implementation of XPath polymorphic type objects -- this package will grow
as XPath objects are expanded to support XML Schema data types.
Support for XPath operations, such as +, -, string(), etc.
Implementation of XPath nodeTest support, and XSLT pattern matching support.
-
Uses of ExpressionNode in org.loboevolution.apache.xpath
Classes in org.loboevolution.apache.xpath that implement ExpressionNodeModifier and TypeClassDescriptionclassThis abstract class serves as the base for all expression objects.Methods in org.loboevolution.apache.xpath that return ExpressionNodeModifier and TypeMethodDescriptionExpression.exprGetParent()ExpressionNode.exprGetParent()Expression.getExpressionOwner()Get the first non-Expression parent of this node.Methods in org.loboevolution.apache.xpath with parameters of type ExpressionNodeModifier and TypeMethodDescriptionvoidExpression.exprSetParent(ExpressionNode n) This pair of methods are used to inform the node of its parent.voidExpressionNode.exprSetParent(ExpressionNode n) This pair of methods are used to inform the node of its parent. -
Uses of ExpressionNode in org.loboevolution.apache.xpath.axes
Classes in org.loboevolution.apache.xpath.axes that implement ExpressionNodeModifier and TypeClassDescriptionclassThis class implements an optimized iterator for attribute axes patterns.classServes as common interface for axes Walkers, and stores common state variables.classBase for iterators that handle predicates.classThis class implements an optimized iterator for "node()" patterns, that is, any children of the context node.classThis class implements an optimized iterator for children patterns that have a node test, and possibly a predicate.classThis class implements an optimized iterator for descendant, descendant-or-self, or "//foo" patterns.classWalker for the OP_VARIABLE, or OP_EXTFUNCTION, or OP_FUNCTION, or OP_GROUP, op codes.classThis class extends NodeSetDTM, which implements NodeIterator, and fetches nodes one at a time in document order based on a XPath LocationPath.classThis class is the dynamic wrapper for a Xalan DTMIterator instance, and provides random access capabilities.classThis class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate.classThis class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate, that only go forward (i.e. it can not be used with ancestors, preceding, etc.)classclassWalker for a reverse axes.classThis class implements an optimized iterator for "." patterns, that is, the self axes without any predicates.classThis class defines a simplified type of union iterator that only tests along the child axes.classThis class extends NodeSetDTM, which implements DTMIterator, and fetches nodes one at a time in document order based on a XPath UnionExpr.classLocation path iterator that uses Walkers.classThis class iterates over set of nodes that needs to be sorted. -
Uses of ExpressionNode in org.loboevolution.apache.xpath.functions
Classes in org.loboevolution.apache.xpath.functions that implement ExpressionNodeModifier and TypeClassDescriptionclassExecute the Boolean() function.classExecute the Ceiling() function.classExecute the Concat() function.classExecute the Contains() function.classExecute the Count() function.classExecute the False() function.classExecute the Floor() function.classExecute the Id() function.classExecute the Lang() function.classExecute the Last() function.classExecute the LocalPart() function.classExecute the Namespace() function.classExecute the normalize-space() function.classExecute the Not() function.classExecute the Number() function.classExecute the Position() function.classExecute the Qname() function.classExecute the round() function.classExecute the StartsWith() function.classExecute the String() function.classExecute the StringLength() function.classExecute the Substring() function.classExecute the SubstringAfter() function.classExecute the SubstringBefore() function.classExecute the Sum() function.classThis is a superclass of all XPath functions.classBase class for functions that accept two arguments.classBase class for functions that accept three arguments.classBase class for functions that accept one argument that can be defaulted if not specified.classBase class for functions that accept an undetermined number of multiple arguments.classBase class for functions that accept one argument.classExecute the Translate() function.classExecute the True() function. -
Uses of ExpressionNode in org.loboevolution.apache.xpath.objects
Classes in org.loboevolution.apache.xpath.objects that implement ExpressionNodeModifier and TypeClassDescriptionclassThis class represents an XPath boolean object, and is capable of converting the boolean to other types, such as a string.classThis class doesn't have any XPathContext, so override whatever to ensure it works OK.classThis class represents an XPath nodeset object, and is capable of converting the nodeset to other types, such as a string.classThis class represents an XPath number, and is capable of converting the number to other types, such as a string.classThis class represents an XPath object, and is capable of converting the object to various types, such as a string.classThis class represents an XPath string object, and is capable of converting the string to other types, such as a number. -
Uses of ExpressionNode in org.loboevolution.apache.xpath.operations
Classes in org.loboevolution.apache.xpath.operations that implement ExpressionNodeModifier and TypeClassDescriptionclassThe 'and' operation expression executor.classThe 'boolean()' operation expression executer.classThe 'div' operation expression executer.classThe '=' operation expression executer.classThe '>' operation expression executor.classThe '>=' operation expression executor.classThe '<' operation expression executor.classThe '<=' operation expression executor.classThe binary '-' operation expression executer.classThe 'mod' operation expression executer.classThe '*' operation expression executer.classThe unary '-' operation expression executer.classThe '!classThe 'number()' operation expression executer.classThe baseclass for a binary operation.classThe 'or' operation expression executer.classThe '+' operation expression executer.classThe 'string()' operation expression executer.classThe unary operation base class. -
Uses of ExpressionNode in org.loboevolution.apache.xpath.patterns
Classes in org.loboevolution.apache.xpath.patterns that implement ExpressionNodeModifier and TypeClassDescriptionclassSpecial context node pattern matcher.classMatch pattern step that contains a function.classThis is the basic node test class for both match patterns and location path steps.classThis class represents a single pattern match step.classThis class represents a union pattern, which can have multiple individual StepPattern patterns.