Uses of Interface
org.jaxen.Function
Packages that use Function
Package
Description
This package defines the core Jaxen API to the XPath engine.
Standard XPath function library.
Extension functions to the standard XPath function library.
XPath functions which are defined in XSLT.
-
Uses of Function in org.jaxen
Modifier and TypeMethodDescriptionContext.getFunction
(String namespaceURI, String prefix, String localName) Retrieve aFunction
.ContextSupport.getFunction
(String namespaceURI, String prefix, String localName) Retrieve aFunction
.FunctionContext.getFunction
(String namespaceURI, String prefix, String localName) An implementation should return aFunction
implementation object based on the namespace URI and local name of the function-call expression.SimpleFunctionContext.getFunction
(String namespaceURI, String prefix, String localName) Modifier and TypeMethodDescriptionvoid
SimpleFunctionContext.registerFunction
(String namespaceURI, String localName, Function function) Register a new function. -
Uses of Function in org.jaxen.function
Classes in org.jaxen.function that implement FunctionModifier and TypeClassDescriptionclass
4.3boolean boolean(object)
class
4.4number ceiling(number)
class
4.2string concat(string,string,string*)
class
4.2boolean contains(string,string)
class
4.1number count(node-set)
class
4.3boolean false()
class
4.4number floor(number)
class
4.1node-set id(object)
class
4.3boolean lang(string)
class
4.1number last()
class
4.1string local-name(node-set?)
class
4.1string name(node-set?)
class
4.1string namespace-uri(node-set?)
class
4.2string normalize-space(string)
class
4.3boolean not(boolean)
class
4.4number number(object)
class
4.1number position()
class
4.4number round(number)
class
4.2boolean starts-with(string,string)
class
4.2string string(object)
class
4.2number string-length(string)
class
4.2string substring-after(string,string)
class
4.2string substring-before(string,string)
class
4.2string substring(string,number,number?)
class
4.4number sum(node-set)
class
4.2string translate(string,string,string)
class
4.3boolean true()
-
Uses of Function in org.jaxen.function.ext
Classes in org.jaxen.function.ext that implement FunctionModifier and TypeClassDescriptionclass
boolean ends-with(string,string)
class
node-set evaluate(string)
class
An abstract base class for Locale-specific extension functions.class
string lower-case(string)
This function can take a second parameter of theLocale
to use for the String conversion.class
string upper-case(string)
This function can take a second parameter of theLocale
to use for the String conversion. -
Uses of Function in org.jaxen.function.xslt
Classes in org.jaxen.function.xslt that implement Function