Uses of Interface
org.jaxen.Function

Packages that use Function
org.jaxen This package defines the core Jaxen API to the XPath engine. 
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. 
 

Uses of Function in org.jaxen
 

Methods in org.jaxen that return Function
 Function SimpleFunctionContext.getFunction(java.lang.String namespaceURI, java.lang.String prefix, java.lang.String localName)
           
 Function FunctionContext.getFunction(java.lang.String namespaceURI, java.lang.String prefix, java.lang.String localName)
          An implementation should return a Function implementation object based on the namespace URI and local name of the function-call expression.
 Function ContextSupport.getFunction(java.lang.String namespaceURI, java.lang.String prefix, java.lang.String localName)
          Retrieve a Function.
 Function Context.getFunction(java.lang.String namespaceURI, java.lang.String prefix, java.lang.String localName)
          Retrieve a Function.
 

Methods in org.jaxen with parameters of type Function
 void SimpleFunctionContext.registerFunction(java.lang.String namespaceURI, java.lang.String localName, Function function)
          Register a new function.
 

Uses of Function in org.jaxen.function
 

Classes in org.jaxen.function that implement Function
 class BooleanFunction
           4.3 boolean boolean(object)
 class CeilingFunction
          4.4 number ceiling(number)
 class ConcatFunction
          4.2 string concat(string,string,string*)
 class ContainsFunction
          4.2 boolean contains(string,string)
The contains function returns true if the first argument string contains the second argument string, and otherwise returns false.
 class CountFunction
          4.1 number count(node-set)
The count function returns the number of nodes in the argument node-set.
 class FalseFunction
          4.3 boolean false()
 class FloorFunction
          4.4 number floor(number)
The floor function returns the largest (closest to positive infinity) number that is not greater than the argument and that is an integer....
 class IdFunction
          4.1 node-set id(object)
 class LangFunction
           4.3 boolean lang(string)
 class LastFunction
          4.1 number last()
 class LocalNameFunction
          4.1 string local-name(node-set?)
 class NameFunction
          4.1 string name(node-set?)
 class NamespaceUriFunction
           4.1 string namespace-uri(node-set?)
 class NormalizeSpaceFunction
           4.2 string normalize-space(string)
 class NotFunction
          4.3 boolean not(boolean)
 class NumberFunction
           4.4 number number(object)
 class PositionFunction
          4.1 number position()
 class RoundFunction
          4.4 number round(number)
 class StartsWithFunction
          4.2 boolean starts-with(string,string)
The starts-with function returns true if the first argument string starts with the second argument string, and otherwise returns false.
 class StringFunction
           4.2 string string(object)
 class StringLengthFunction
          4.2 number string-length(string)
 class SubstringAfterFunction
          4.2 string substring-after(string,string)
The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string.
 class SubstringBeforeFunction
          4.2 string substring-before(string,string)
 class SubstringFunction
           4.2 string substring(string,number,number?)
 class SumFunction
          4.4 number sum(node-set)
 class TranslateFunction
           4.2 string translate(string,string,string)
 class TrueFunction
          4.3 boolean true()
 

Uses of Function in org.jaxen.function.ext
 

Classes in org.jaxen.function.ext that implement Function
 class EndsWithFunction
          boolean ends-with(string,string)
 class EvaluateFunction
          node-set evaluate(string)
 class LocaleFunctionSupport
          An abstract base class for Locale-specific extension functions.
 class LowerFunction
          string lower-case(string) This function can take a second parameter of the Locale to use for the String conversion.
 class MatrixConcatFunction
          Extension Function boolean matrix-concat(nodeSet,nodeSet,nodeSet*)
 class UpperFunction
          string upper-case(string) This function can take a second parameter of the Locale to use for the String conversion.
 

Uses of Function in org.jaxen.function.xslt
 

Classes in org.jaxen.function.xslt that implement Function
 class DocumentFunction
          Implements the XSLT document() function
 



Copyright © 2001-2005 Codehaus. All Rights Reserved.