Uses of Interface
org.apache.xpath.ExpressionNode
| Package | Description |
|---|---|
| org.apache.xalan.processor |
Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot
(a TRaX Templates object).
|
| org.apache.xalan.templates |
Implements the
Templates interface,
and defines a set of classes that represent an XSLT stylesheet. |
| org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
| org.apache.xpath |
Implementation of XPath; for the most part, only classes meant for public use are
found at this root level of the XPath packages.
|
| org.apache.xpath.axes |
Implementation of XPath LocationPath support -- primary classes are
LocPathIterator and UnionPathIterator.
|
| org.apache.xpath.functions |
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.
|
| org.apache.xpath.objects |
Implementation of XPath polymorphic type objects -- this package will grow
as XPath objects are expanded to support XML Schema data types.
|
| org.apache.xpath.operations |
Support for XPath operations, such as +, -, string(), etc.
|
| org.apache.xpath.patterns |
Implementation of XPath nodeTest support, and XSLT pattern matching support.
|
-
Uses of ExpressionNode in org.apache.xalan.processor
Classes in org.apache.xalan.processor that implement ExpressionNode Modifier and Type Class Description classProcessorCharactersThis class processes character events for a XSLT template element.classProcessorExsltFuncResultThis class processes parse events for an exslt func:result element.classProcessorExsltFunctionThis class processes parse events for an exslt func:function element.classProcessorImportThis class processes parse events for an xsl:import element.classProcessorIncludeTransformerFactory class for xsl:include markup.classProcessorLREProcesses an XSLT literal-result-element, or something that looks like one.classProcessorStylesheetDocThis class processes the xsl:stylesheet element.classProcessorStylesheetElementTransformerFactory for xsl:stylesheet or xsl:transform markup.classProcessorTemplateElemThis class processes parse events for an XSLT template element.classProcessorTextProcess xsl:text.classProcessorUnknownThis class processes an unknown template element.classWhitespaceInfoPathsclassXSLTElementProcessorThis class acts as the superclass for all stylesheet element processors, and deals with things that are common to all elements. -
Uses of ExpressionNode in org.apache.xalan.templates
Classes in org.apache.xalan.templates that implement ExpressionNode Modifier and Type Class Description classDecimalFormatPropertiesImplement xsl:decimal-format.classElemApplyImportImplement xsl:apply-imports.classElemApplyTemplatesImplement xsl:apply-templates.classElemAttributeImplement xsl:attribute.classElemAttributeSetImplement xsl:attribute-set.classElemCallTemplateImplement xsl:call-template.classElemChooseImplement xsl:choose.classElemCommentImplement xsl:comment.classElemCopyImplement xsl:copy.classElemCopyOfImplement xsl:copy-of.classElemElementImplement xsl:elementclassElemEmptySimple empty elem to push on the stack when nothing else got pushed, so that pop() works correctly.classElemExsltFuncResultHandles the EXSLT result element within an EXSLT function element.classElemExsltFunctionImplement func:function.classElemExtensionCallImplement an extension element.classElemExtensionDeclImplement the declaration of an extension elementclassElemExtensionScriptImplement Script extension elementclassElemFallbackImplement xsl:fallback.classElemForEachImplement xsl:for-each.classElemIfImplement xsl:if.classElemLiteralResultImplement a Literal Result Element.classElemMessageImplement xsl:message.classElemNumberImplement xsl:number.classElemOtherwiseImplement xsl:otherwise.classElemParamImplement xsl:param.classElemPIImplement xsl:processing-instruction.classElemSortImplement xsl:sort.classElemTemplateImplement xsl:template.classElemTemplateElementAn instance of this class represents an element inside an xsl:template class.classElemTextImplement xsl:template.classElemTextLiteralImplement a text literal.classElemUnknownImplement an unknown elementclassElemUseImplement xsl:use.classElemValueOfImplement xsl:value-of.classElemVariableImplement xsl:variable.classElemVariablePsuedoclassElemWhenImplement xsl:when.classElemWithParamImplement xsl:with-param.classFuncDocumentExecute the Doc() function.classFuncFormatNumbExecute the FormatNumber() function.classFuncKeyExecute the Key() function.classKeyDeclarationHolds the attribute declarations for the xsl:keys element.classNamespaceAliasObject to hold an xsl:namespace element.classOutputPropertiesThis class provides information from xsl:output elements.classStylesheetRepresents a stylesheet element.classStylesheetComposedRepresents a stylesheet that has methods that resolve includes and imports.classStylesheetRootThis class represents the root object of the stylesheet tree.classWhiteSpaceInfoThis is used as a special "fake" template that can be handled by the TemplateList to do pattern matching on nodes.classXUnresolvedVariableAn instance of this class holds unto a variable until it is executed.classXUnresolvedVariableSimpleThis is the same as XUnresolvedVariable, but it assumes that the context is already set up.Methods in org.apache.xalan.templates that return ExpressionNode Modifier and Type Method Description ExpressionNodeElemTemplateElement. exprGetChild(int i)This method returns a child node.ExpressionNodeElemTemplateElement. exprGetParent()Get the ExpressionNode parent of this node.Methods in org.apache.xalan.templates with parameters of type ExpressionNode Modifier and Type Method Description voidElemTemplateElement. exprAddChild(ExpressionNode n, int i)This method tells the node to add its argument to the node's list of children.voidElemTemplateElement. exprSetParent(ExpressionNode n)Set the parent of this node.protected booleanRedundentExprEliminator. isParam(ExpressionNode expr)Tell if the expr param is contained within an xsl:param. -
Uses of ExpressionNode in org.apache.xalan.transformer
Classes in org.apache.xalan.transformer that implement ExpressionNode Modifier and Type Class Description classKeyIteratorThis class implements an optimized iterator for "key()" patterns, matching each node to the match attribute in one or more xsl:key declarations. -
Uses of ExpressionNode in org.apache.xpath
Classes in org.apache.xpath that implement ExpressionNode Modifier and Type Class Description classExpressionThis abstract class serves as the base for all expression objects.Methods in org.apache.xpath that return ExpressionNode Modifier and Type Method Description ExpressionNodeExpression. exprGetChild(int i)This method returns a child node.ExpressionNodeExpressionNode. exprGetChild(int i)This method returns a child node.ExpressionNodeExpression. exprGetParent()ExpressionNodeExpressionNode. exprGetParent()ExpressionNodeExpression. getExpressionOwner()Get the first non-Expression parent of this node.protected ExpressionNodeXPathException. getExpressionOwner(ExpressionNode ex)Get the first non-Expression parent of this node.Methods in org.apache.xpath with parameters of type ExpressionNode Modifier and Type Method Description voidExpression. exprAddChild(ExpressionNode n, int i)This method tells the node to add its argument to the node's list of children.voidExpressionNode. exprAddChild(ExpressionNode n, int i)This method tells the node to add its argument to the node's list of children.voidExpression. 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.protected ExpressionNodeXPathException. getExpressionOwner(ExpressionNode ex)Get the first non-Expression parent of this node.NodeXPathException. getStylesheetNode(ExpressionNode ex)Get the XSLT ElemVariable that this sub-expression references.Constructors in org.apache.xpath with parameters of type ExpressionNode Constructor Description XPathException(String message, ExpressionNode ex)Create an XPathException object that holds an error message. -
Uses of ExpressionNode in org.apache.xpath.axes
Classes in org.apache.xpath.axes that implement ExpressionNode Modifier and Type Class Description classAttributeIteratorThis class implements an optimized iterator for attribute axes patterns.classAxesWalkerServes as common interface for axes Walkers, and stores common state variables.classBasicTestIteratorBase for iterators that handle predicates.classChildIteratorThis class implements an optimized iterator for "node()" patterns, that is, any children of the context node.classChildTestIteratorThis class implements an optimized iterator for children patterns that have a node test, and possibly a predicate.classDescendantIteratorThis class implements an optimized iterator for descendant, descendant-or-self, or "//foo" patterns.classFilterExprIteratorclassFilterExprIteratorSimpleClass to use for one-step iteration that doesn't have a predicate, and doesn't need to set the context.classFilterExprWalkerWalker for the OP_VARIABLE, or OP_EXTFUNCTION, or OP_FUNCTION, or OP_GROUP, op codes.classLocPathIteratorThis class extends NodeSetDTM, which implements NodeIterator, and fetches nodes one at a time in document order based on a XPathclassMatchPatternIteratorThis class treats a LocationPath as a filtered iteration over the tree, evaluating each node in a super axis traversal against the LocationPath interpreted as a match pattern.classNodeSequenceThis class is the dynamic wrapper for a Xalan DTMIterator instance, and provides random access capabilities.classOneStepIteratorThis class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate.classOneStepIteratorForwardThis class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate, that only go forward (i.e.classPredicatedNodeTestclassReverseAxesWalkerWalker for a reverse axes.classSelfIteratorNoPredicateThis class implements an optimized iterator for "." patterns, that is, the self axes without any predicates.classUnionChildIteratorThis class defines a simplified type of union iterator that only tests along the child axes.classUnionPathIteratorThis class extends NodeSetDTM, which implements DTMIterator, and fetches nodes one at a time in document order based on a XPath UnionExpr.classWalkingIteratorLocation path iterator that uses Walkers.classWalkingIteratorSortedThis class iterates over set of nodes that needs to be sorted. -
Uses of ExpressionNode in org.apache.xpath.functions
Classes in org.apache.xpath.functions that implement ExpressionNode Modifier and Type Class Description classFuncBooleanExecute the Boolean() function.classFuncCeilingExecute the Ceiling() function.classFuncConcatExecute the Concat() function.classFuncContainsExecute the Contains() function.classFuncCountExecute the Count() function.classFuncCurrentExecute the current() function.classFuncDoclocationExecute the proprietary document-location() function, which returns a node set of documents.classFuncExtElementAvailableExecute the ExtElementAvailable() function.classFuncExtFunctionAn object of this class represents an extension call expression.classFuncExtFunctionAvailableExecute the ExtFunctionAvailable() function.classFuncFalseExecute the False() function.classFuncFloorExecute the Floor() function.classFuncGenerateIdExecute the GenerateId() function.classFuncIdExecute the Id() function.classFuncLangExecute the Lang() function.classFuncLastExecute the Last() function.classFuncLocalPartExecute the LocalPart() function.classFuncNamespaceExecute the Namespace() function.classFuncNormalizeSpaceExecute the normalize-space() function.classFuncNotExecute the Not() function.classFuncNumberExecute the Number() function.classFuncPositionExecute the Position() function.classFuncQnameExecute the Qname() function.classFuncRoundExecute the round() function.classFuncStartsWithExecute the StartsWith() function.classFuncStringExecute the String() function.classFuncStringLengthExecute the StringLength() function.classFuncSubstringExecute the Substring() function.classFuncSubstringAfterExecute the SubstringAfter() function.classFuncSubstringBeforeExecute the SubstringBefore() function.classFuncSumExecute the Sum() function.classFuncSystemPropertyExecute the SystemProperty() function.classFunctionThis is a superclass of all XPath functions.classFunction2ArgsBase class for functions that accept two arguments.classFunction3ArgsBase class for functions that accept three arguments.classFunctionDef1ArgBase class for functions that accept one argument that can be defaulted if not specified.classFunctionMultiArgsBase class for functions that accept an undetermined number of multiple arguments.classFunctionOneArgBase class for functions that accept one argument.classFuncTranslateExecute the Translate() function.classFuncTrueExecute the True() function.classFuncUnparsedEntityURIMethods in org.apache.xpath.functions with parameters of type ExpressionNode Modifier and Type Method Description voidFuncExtFunction. exprSetParent(ExpressionNode n)Set the parent node. -
Uses of ExpressionNode in org.apache.xpath.objects
Classes in org.apache.xpath.objects that implement ExpressionNode Modifier and Type Class Description classXBooleanThis class represents an XPath boolean object, and is capable of converting the boolean to other types, such as a string.classXBooleanStaticThis class doesn't have any XPathContext, so override whatever to ensure it works OK.classXNodeSetThis class represents an XPath nodeset object, and is capable of converting the nodeset to other types, such as a string.classXNodeSetForDOMThis class overrides the XNodeSet#object() method to provide the original Node object, NodeList object, or NodeIterator.classXNullThis class represents an XPath null object, and is capable of converting the null to other types, such as a string.classXNumberThis class represents an XPath number, and is capable of converting the number to other types, such as a string.classXObjectThis class represents an XPath object, and is capable of converting the object to various types, such as a string.classXRTreeFragThis class represents an XPath result tree fragment object, and is capable of converting the RTF to other types, such as a string.classXRTreeFragSelectWrapperThis class makes an select statement act like an result tree fragment.classXStringThis class represents an XPath string object, and is capable of converting the string to other types, such as a number.classXStringForCharsThis class will wrap a FastStringBuffer and allow forclassXStringForFSBThis class will wrap a FastStringBuffer and allow forConstructors in org.apache.xpath.objects with parameters of type ExpressionNode Constructor Description XRTreeFrag(int root, XPathContext xctxt, ExpressionNode parent)Create an XRTreeFrag Object. -
Uses of ExpressionNode in org.apache.xpath.operations
Classes in org.apache.xpath.operations that implement ExpressionNode Modifier and Type Class Description classAndThe 'and' operation expression executer.classBoolThe 'boolean()' operation expression executer.classDivThe 'div' operation expression executer.classEqualsThe '=' operation expression executer.classGtThe '>' operation expression executer.classGteThe '>=' operation expression executer.classLtThe '<' operation expression executer.classLteThe '<=' operation expression executer.classMinusThe binary '-' operation expression executer.classModThe 'mod' operation expression executer.classMultThe '*' operation expression executer.classNegThe unary '-' operation expression executer.classNotEqualsThe '!=' operation expression executer.classNumberThe 'number()' operation expression executer.classOperationThe baseclass for a binary operation.classOrThe 'or' operation expression executer.classPlusThe '+' operation expression executer.classQuoDeprecated.classStringThe 'string()' operation expression executer.classUnaryOperationThe unary operation base class.classVariableThe variable reference expression executer.classVariableSafeAbsRefThis is a "smart" variable reference that is used in situations where an absolute path is optimized into a variable reference, but may be used in some situations where the document context may have changed. -
Uses of ExpressionNode in org.apache.xpath.patterns
Classes in org.apache.xpath.patterns that implement ExpressionNode Modifier and Type Class Description classContextMatchStepPatternSpecial context node pattern matcher.classFunctionPatternMatch pattern step that contains a function.classNodeTestThis is the basic node test class for both match patterns and location path steps.classStepPatternThis class represents a single pattern match step.classUnionPatternThis class represents a union pattern, which can have multiple individual StepPattern patterns.