Uses of Interface
org.jaxen.Navigator

Packages that use Navigator
org.jaxen This package defines the core Jaxen API to the XPath engine. 
org.jaxen.dom Navigation for W3C DOM trees. 
org.jaxen.dom.html   
org.jaxen.dom4j Navigation for dom4j trees. 
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.jdom Navigation for JDOM trees. 
org.jaxen.util Utility objects for walking object models. 
 

Uses of Navigator in org.jaxen
 

Subinterfaces of Navigator in org.jaxen
 interface NamedAccessNavigator
          Interface for navigating around an arbitrary object model accessing certain parts by name for performance.
 

Classes in org.jaxen that implement Navigator
 class DefaultNavigator
          Default implementation of Navigator.
 

Methods in org.jaxen that return Navigator
 Navigator XPath.getNavigator()
          Retrieve the XML object-model-specific Navigator for us in evaluating this XPath expression.
 Navigator ContextSupport.getNavigator()
          Retrieve the Navigator.
 Navigator Context.getNavigator()
          Retrieve the current Navigator.
 Navigator BaseXPath.getNavigator()
          Retrieve the XML object-model-specific Navigator for us in evaluating this XPath expression.
 

Methods in org.jaxen with parameters of type Navigator
 void SimpleNamespaceContext.addElementNamespaces(Navigator nav, java.lang.Object element)
          Adds all the namespace declarations that are in scope on the given element.
 

Constructors in org.jaxen with parameters of type Navigator
ContextSupport(NamespaceContext namespaceContext, FunctionContext functionContext, VariableContext variableContext, Navigator navigator)
          Construct.
BaseXPath(java.lang.String xpathExpr, Navigator navigator)
          Construct given an XPath expression string.
 

Uses of Navigator in org.jaxen.dom
 

Methods in org.jaxen.dom that return Navigator
static Navigator DocumentNavigator.getInstance()
          Get a singleton DocumentNavigator for efficiency.
 

Uses of Navigator in org.jaxen.dom.html
 

Methods in org.jaxen.dom.html that return Navigator
static Navigator DocumentNavigator.getInstance(boolean toLowerCase)
          Get a singleton DocumentNavigator for efficiency.
 

Uses of Navigator in org.jaxen.dom4j
 

Classes in org.jaxen.dom4j that implement Navigator
 class DocumentNavigator
          Interface for navigating around the DOM4J object model.
 

Methods in org.jaxen.dom4j that return Navigator
static Navigator DocumentNavigator.getInstance()
          Retrieve the singleton instance of this DocumentNavigator.
 

Uses of Navigator in org.jaxen.function
 

Methods in org.jaxen.function with parameters of type Navigator
static java.lang.String TranslateFunction.evaluate(java.lang.Object strArg, java.lang.Object fromArg, java.lang.Object toArg, Navigator nav)
           
static java.lang.Double SumFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.String SubstringBeforeFunction.evaluate(java.lang.Object strArg, java.lang.Object matchArg, Navigator nav)
           
static java.lang.String SubstringAfterFunction.evaluate(java.lang.Object strArg, java.lang.Object matchArg, Navigator nav)
           
static java.lang.Number StringLengthFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.String StringFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.Boolean StartsWithFunction.evaluate(java.lang.Object strArg, java.lang.Object matchArg, Navigator nav)
           
static java.lang.Number RoundFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.Double NumberFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.Boolean NotFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.String NormalizeSpaceFunction.evaluate(java.lang.Object strArg, Navigator nav)
           
static java.lang.String NamespaceUriFunction.evaluate(java.util.List list, Navigator nav)
           
static java.lang.String NameFunction.evaluate(java.util.List list, Navigator nav)
           
static java.lang.String LocalNameFunction.evaluate(java.util.List list, Navigator nav)
           
static java.util.List IdFunction.evaluate(java.util.List contextNodes, java.lang.Object arg, Navigator nav)
           
static java.lang.Double FloorFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.Boolean ContainsFunction.evaluate(java.lang.Object strArg, java.lang.Object matchArg, Navigator nav)
           
static java.lang.String ConcatFunction.evaluate(java.util.List list, Navigator nav)
           
static java.lang.Double CeilingFunction.evaluate(java.lang.Object obj, Navigator nav)
           
static java.lang.Boolean BooleanFunction.evaluate(java.lang.Object obj, Navigator nav)
           
 

Uses of Navigator in org.jaxen.function.ext
 

Methods in org.jaxen.function.ext with parameters of type Navigator
static java.lang.String UpperFunction.evaluate(java.lang.Object strArg, java.util.Locale locale, Navigator nav)
          Converts the given string value to upper case using an optional Locale
static java.lang.Object MatrixConcatFunction.evaluate(java.util.List list, Navigator nav)
           
static java.lang.String LowerFunction.evaluate(java.lang.Object strArg, java.util.Locale locale, Navigator nav)
          Converts the given string value to lower case using an optional Locale
protected  java.util.Locale LocaleFunctionSupport.getLocale(java.lang.Object value, Navigator navigator)
          Attempts to convert the given function argument value into a Locale either via casting, extracting it from a List or looking up the named Locale using reflection.
static java.lang.Boolean EndsWithFunction.evaluate(java.lang.Object strArg, java.lang.Object matchArg, Navigator nav)
           
 

Uses of Navigator in org.jaxen.function.xslt
 

Methods in org.jaxen.function.xslt with parameters of type Navigator
static java.lang.Object DocumentFunction.evaluate(java.lang.String url, Navigator nav)
           
 

Uses of Navigator in org.jaxen.javabean
 

Methods in org.jaxen.javabean that return Navigator
static Navigator DocumentNavigator.getInstance()
          Retrieve the singleton instance of this DocumentNavigator.
 

Uses of Navigator in org.jaxen.jdom
 

Methods in org.jaxen.jdom that return Navigator
static Navigator DocumentNavigator.getInstance()
           
 

Uses of Navigator in org.jaxen.util
 

Methods in org.jaxen.util that return Navigator
protected  Navigator StackedIterator.getNavigator()
          Deprecated.  
 

Methods in org.jaxen.util with parameters of type Navigator
protected  void StackedIterator.init(java.lang.Object contextNode, Navigator navigator)
          Deprecated.  
 

Constructors in org.jaxen.util with parameters of type Navigator
StackedIterator(java.lang.Object contextNode, Navigator navigator)
          Deprecated.  
PrecedingSiblingAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
PrecedingAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
FollowingSiblingAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
FollowingAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
DescendantOrSelfAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
DescendantAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
DescendantAxisIterator(Navigator navigator, java.util.Iterator iterator)
           
AncestorOrSelfAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
AncestorAxisIterator(java.lang.Object contextNode, Navigator navigator)
           
 



Copyright © 2001-2005 Codehaus. All Rights Reserved.