Uses of Class
org.jaxen.Context
-
Packages that use Context Package Description org.jaxen This package defines the core Jaxen API to the XPath engine.org.jaxen.expr Interfaces and default implementations for XPath expression components.org.jaxen.function Standard XPath function library.org.jaxen.function.ext Extension functions to the standard XPath function library.org.jaxen.function.xslt XPath functions which are defined in XSLT.org.jaxen.javabean Navigation for JavaBeans.org.jaxen.pattern Defines XSLT Pattern objects. -
-
Uses of Context in org.jaxen
Methods in org.jaxen that return Context Modifier and Type Method Description ContextContext. duplicate()Create a type-safe shallow copy.protected ContextBaseXPath. getContext(java.lang.Object node)Create aContextwrapper for the provided implementation-specific object.Methods in org.jaxen with parameters of type Context Modifier and Type Method Description java.lang.ObjectFunction. call(Context context, java.util.List args)Evaluate this function.protected java.util.ListBaseXPath. selectNodesForContext(Context context)Select all nodes that match this XPath expression on the given Context object.protected java.lang.ObjectBaseXPath. selectSingleNodeForContext(Context context)Return only the first node that is selected by this XPath expression. -
Uses of Context in org.jaxen.expr
Methods in org.jaxen.expr with parameters of type Context Modifier and Type Method Description booleanDefaultFilterExpr. asBoolean(Context context)Deprecated.Returns true if the current filter matches at least one of the context nodesbooleanFilterExpr. asBoolean(Context context)Evaluates the filter expression on the current context and returns true if at least one node matches.java.util.ListDefaultXPathExpr. asList(Context context)Deprecated.java.util.ListXPathExpr. asList(Context context)Evaluates the expression and returns a list cintaing the resulting nodes, or a singleton list containing aDouble,String, orBoolean.java.lang.ObjectDefaultAbsoluteLocationPath. evaluate(Context context)Deprecated.java.lang.ObjectDefaultFilterExpr. evaluate(Context context)Deprecated.java.lang.ObjectDefaultFunctionCallExpr. evaluate(Context context)Deprecated.java.util.ListDefaultNameStep. evaluate(Context context)Deprecated.Evaluate the context node set to find the new node set.java.util.ListDefaultStep. evaluate(Context context)Deprecated.java.lang.ObjectDefaultUnionExpr. evaluate(Context context)Deprecated.java.lang.ObjectExpr. evaluate(Context context)Evaluate the expression in the given context, and return the result.java.lang.ObjectPredicate. evaluate(Context context)Evaluates this predicate's expression and returns the result.java.util.ListStep. evaluate(Context context)For each node in the given context calls matches() for every node on the axis, then filters the result by each of the predicates.java.util.ListDefaultFunctionCallExpr. evaluateParams(Context context)Deprecated. -
Uses of Context in org.jaxen.function
Methods in org.jaxen.function with parameters of type Context Modifier and Type Method Description java.lang.ObjectBooleanFunction. call(Context context, java.util.List args)Convert the argument to aBooleanjava.lang.ObjectCeilingFunction. call(Context context, java.util.List args)Returns the smallest integer greater than or equal to a number.java.lang.ObjectConcatFunction. call(Context context, java.util.List args)Concatenates the arguments and returns the resulting string.java.lang.ObjectContainsFunction. call(Context context, java.util.List args)Returns true if the string-value of the first item inargscontains string-value of the second item; false otherwise.java.lang.ObjectCountFunction. call(Context context, java.util.List args)Returns the number of nodes in the specified node-set.java.lang.ObjectFalseFunction. call(Context context, java.util.List args)ReturnsBoolean.FALSEjava.lang.ObjectFloorFunction. call(Context context, java.util.List args)Returns the largest integer less than or equal to a number.java.lang.ObjectIdFunction. call(Context context, java.util.List args)Returns a list of the nodes with the specified IDs.java.lang.ObjectLangFunction. call(Context context, java.util.List args)Determines whether or not the context node is written in the language specified by the XPath string-value ofargs.get(0), as determined by the nearestxml:langattribute in scope.java.lang.ObjectLastFunction. call(Context context, java.util.List args)Returns the number of nodes in the context node-set.java.lang.ObjectLocalNameFunction. call(Context context, java.util.List args)Returns the local-name of the specified node or the context node if no arguments are provided.java.lang.ObjectNameFunction. call(Context context, java.util.List args)Returns the name of the specified node or the name of the context node if no arguments are provided.java.lang.ObjectNamespaceUriFunction. call(Context context, java.util.List args)Returns the namespace URI of the specified node or the namespace URI of the context node if no arguments are provided.java.lang.ObjectNormalizeSpaceFunction. call(Context context, java.util.List args)Returns the string-value of the first item inargsafter removing all leading and trailing white space, and replacing each other sequence of whitespace by a single space.java.lang.ObjectNotFunction. call(Context context, java.util.List args)ReturnsBoolean.TRUEif the boolean value ofargs.get(0)is false, andBoolean.FALSEotherwise.java.lang.ObjectNumberFunction. call(Context context, java.util.List args)Returns the number value ofargs.get(0), or the number value of the context node ifargsis empty.java.lang.ObjectPositionFunction. call(Context context, java.util.List args)Returns the position of the context node in the context node-set.java.lang.ObjectRoundFunction. call(Context context, java.util.List args)Returns the nearest integer to the number.java.lang.ObjectStartsWithFunction. call(Context context, java.util.List args)Returns true if the string-value of the first item inargsstarts with the string-value of the second item inargs.java.lang.ObjectStringFunction. call(Context context, java.util.List args)Returns the string-value ofargs.get(0)or of the context node ifargsis empty.java.lang.ObjectStringLengthFunction. call(Context context, java.util.List args)Returns the number of Unicode characters in the string-value of the argument.java.lang.ObjectSubstringAfterFunction. call(Context context, java.util.List args)Returns the part of the string-value of the first item inargsthat follows the string-value of the second item inargs; or the empty string if the second string is not a substring of the first string.java.lang.ObjectSubstringBeforeFunction. call(Context context, java.util.List args)Returns the part of the string-value of the first item inargsthat comes before the string-value of the second item inargs; or the empty string if the second string is not a substring of the first string.java.lang.ObjectSubstringFunction. call(Context context, java.util.List args)Returns a substring of an XPath string-value by character index.java.lang.ObjectSumFunction. call(Context context, java.util.List args)Returns the sum of its arguments.java.lang.ObjectTranslateFunction. call(Context context, java.util.List args)Returns a copy of the first argument in which characters found in the second argument are replaced by corresponding characters from the third argument.java.lang.ObjectTrueFunction. call(Context context, java.util.List args)ReturnsBoolean.TRUEstatic java.lang.DoubleLastFunction. evaluate(Context context)Returns the number of nodes in the context node-set.static java.lang.DoublePositionFunction. evaluate(Context context)Returns the position of the context node in the context node-set. -
Uses of Context in org.jaxen.function.ext
Methods in org.jaxen.function.ext with parameters of type Context Modifier and Type Method Description java.lang.ObjectEndsWithFunction. call(Context context, java.util.List args)java.lang.ObjectEvaluateFunction. call(Context context, java.util.List args)java.lang.ObjectLowerFunction. call(Context context, java.util.List args)java.lang.ObjectUpperFunction. call(Context context, java.util.List args)static java.util.ListEvaluateFunction. evaluate(Context context, java.lang.Object arg) -
Uses of Context in org.jaxen.function.xslt
Methods in org.jaxen.function.xslt with parameters of type Context Modifier and Type Method Description java.lang.ObjectDocumentFunction. call(Context context, java.util.List args) -
Uses of Context in org.jaxen.javabean
Methods in org.jaxen.javabean that return Context Modifier and Type Method Description protected ContextJavaBeanXPath. getContext(java.lang.Object node) -
Uses of Context in org.jaxen.pattern
Methods in org.jaxen.pattern with parameters of type Context Modifier and Type Method Description protected java.lang.StringNamespaceTest. getURI(java.lang.Object node, Context context)Returns the URI of the current prefix or "" if no URI can be foundbooleanAnyChildNodeTest. matches(java.lang.Object node, Context context)booleanAnyNodeTest. matches(java.lang.Object node, Context context)booleanLocationPathPattern. matches(java.lang.Object node, Context context)booleanNamespaceTest. matches(java.lang.Object node, Context context)booleanNameTest. matches(java.lang.Object node, Context context)booleanNodeTypeTest. matches(java.lang.Object node, Context context)booleanNoNodeTest. matches(java.lang.Object node, Context context)abstract booleanPattern. matches(java.lang.Object node, Context context)booleanTextNodeTest. matches(java.lang.Object node, Context context)booleanUnionPattern. matches(java.lang.Object node, Context context)
-