Package net.sf.saxon.option.exslt
Class Common
- java.lang.Object
-
- net.sf.saxon.option.exslt.Common
-
public abstract class Common extends java.lang.Object
This class implements extension functions in the http://exslt.org/common namespace.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValueRepresentation
nodeSet(ValueRepresentation frag)
Convert a result tree fragment to a node-set.static java.lang.String
objectType(XPathContext context, ValueRepresentation value)
Return the type of the supplied value: "sequence", "string", "number", "boolean", "external".
-
-
-
Method Detail
-
nodeSet
public static ValueRepresentation nodeSet(ValueRepresentation frag)
Convert a result tree fragment to a node-set. This is a hangover from XSLT 1.0; it is implemented as a no-op.
-
objectType
public static java.lang.String objectType(XPathContext context, ValueRepresentation value)
Return the type of the supplied value: "sequence", "string", "number", "boolean", "external". (EXSLT spec not yet modified to cater for XPath 2.0 data model)
-
-