|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.saxon.functions.Extensions
public class Extensions
This class implements functions that are supplied as standard with SAXON, but which are not defined in the XSLT or XPath specifications.
To invoke these functions, use a function call of the form prefix:name() where name is the method name, and prefix maps to a URI such as http://saxon.sf.net/net.sf.saxon.functions.Extensions (only the part of the URI after the last slash is important).
Method Summary | |
---|---|
static SequenceIterator |
after(XPathContext context,
SequenceIterator ns1,
SequenceIterator ns2)
Find all the nodes in ns1 that are after the first node in ns2. |
static byte[] |
base64BinaryToOctets(Base64BinaryValue in)
Convert a base64Binary value to a sequence of integers representing the octets contained in the value |
static String |
base64BinaryToString(XPathContext context,
Base64BinaryValue in,
String encoding)
Convert a base64Binary value to a String, assuming a particular encoding |
static Templates |
compileStylesheet(XPathContext context,
DocumentInfo doc)
Compile a document containing a stylesheet module into a stylesheet that can be used to perform transformations |
static DayTimeDurationValue |
dayTimeDurationFromSeconds(BigDecimal arg)
Get a dayTimeDuration value corresponding to a given number of seconds |
static BigDecimal |
decimalDivide(BigDecimal arg1,
BigDecimal arg2,
int scale)
Perform decimal division to a user-specified precision |
static boolean |
deepEqual(XPathContext context,
SequenceIterator arg1,
SequenceIterator arg2,
String collation,
String flags)
Perform a parameterized deep-equals() test |
static DocumentInfo |
discardDocument(XPathContext context,
DocumentInfo doc)
Remove a document from the document pool. |
static String |
generateId(NodeInfo node)
The function saxon:generate-id() is equivalent to the standard XSLT function generate-id(). |
static Configuration |
getConfiguration(XPathContext c)
Return the Configuration object |
static XPathContext |
getContext(XPathContext c)
Return the XPathContext object |
static Controller |
getController(XPathContext c)
Return the Controller object |
static String |
getPseudoAttribute(XPathContext c,
String name)
Get a pseudo-attribute of a processing instruction. |
static boolean |
hasSameNodes(SequenceIterator p1,
SequenceIterator p2)
Determine whether two node-sets contain the same nodes |
static byte[] |
hexBinaryToOctets(HexBinaryValue in)
Convert a hexBinary value to a sequence of integers representing the octets contained in the value |
static String |
hexBinaryToString(XPathContext context,
HexBinaryValue in,
String encoding)
Convert a hexBinary value to a String, assuming a particular encoding |
static Value |
highest(SequenceIterator nsv)
Get the node with maximum numeric value of the string-value of each of a set of nodes |
static SequenceIterator |
highest(XPathContext context,
SequenceIterator nsv,
Evaluate.PreparedExpression pexpression)
Get the maximum numeric value of a stored expression over a set of nodes |
static SequenceIterator |
leading(XPathContext context,
SequenceIterator in,
Evaluate.PreparedExpression pexp)
Get the items that satisfy the given expression, up to and excluding the first one (in sequence order) that doesn't satisfy the expression. |
static int |
lineNumber(NodeInfo node)
Return the line number of the specified node. |
static int |
lineNumber(XPathContext c)
Return the line number of the context node. |
static Value |
lowest(SequenceIterator nsv)
Get the node with minimum numeric value of the string-value of each of a set of nodes |
static SequenceIterator |
lowest(XPathContext context,
SequenceIterator nsv,
Evaluate.PreparedExpression pexpression)
Get the node with minimum numeric value of a stored expression over a set of nodes |
static NodeInfo |
namespaceNode(XPathContext context,
String prefix,
String uri)
Create a parentless namespace node. |
static Base64BinaryValue |
octetsToBase64Binary(byte[] in)
Convert a sequence of integers in the range 0-255, representing a sequence of octets, to a base64Binary value |
static HexBinaryValue |
octetsToHexBinary(byte[] in)
Convert a sequence of integers in the range 0-255, representing a sequence of octets, to a hexBinary value |
static String |
path(XPathContext c)
Return an XPath expression that identifies the current node |
static void |
pauseTracing(XPathContext c)
Switch tracing off. |
static void |
resumeTracing(XPathContext c)
Resume tracing. |
static SequenceIterator |
sort(XPathContext context,
SequenceIterator input)
Sort a sequence of nodes or atomic values, using the atomic value itself, or the atomized value of the node, as the sort key. |
static SequenceIterator |
sort(XPathContext context,
SequenceIterator input,
Evaluate.PreparedExpression sortKeyExpression)
Sort a sequence of nodes or atomic values, using a given expression to calculate the sort key. |
static Base64BinaryValue |
stringToBase64Binary(String in,
String encoding)
Convert a string to a base64Binary value in a given encoding |
static HexBinaryValue |
stringToHexBinary(String in,
String encoding)
Convert a string to a hexBinary value in a given encoding |
static List |
stringToUtf8(String in)
Get the UTF-8 encoding of a string |
static String |
systemId(XPathContext c)
Return the system identifier of the context node |
static SequenceIterator |
tokenize(String s)
Return a node-set by tokenizing a supplied string. |
static SequenceIterator |
tokenize(String s,
String delim)
Return a sequence by tokenizing a supplied string. |
static DocumentInfo |
transform(XPathContext context,
Templates templates,
NodeInfo source)
Run a transformation to convert an input tree to an output document |
static DocumentInfo |
transform(XPathContext context,
Templates templates,
NodeInfo source,
SequenceIterator params)
Run a transformation to convert an input tree to an output document, supplying parameters to the transformation. |
static String |
typeAnnotation(XPathContext context,
NodeInfo node)
Display the value of the type annotation of a node |
static boolean |
validCharacter(XPathContext c,
int in)
Test whether a given integer is the codepoint of a valid XML character |
static YearMonthDurationValue |
yearMonthDurationFromMonths(int arg)
Get a yearMonthDuration value corresponding to a given number of months |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static void pauseTracing(XPathContext c)
public static void resumeTracing(XPathContext c)
public static String systemId(XPathContext c) throws XPathException
XPathException
public static String generateId(NodeInfo node)
node
- the node whose identifier is required
public static int lineNumber(XPathContext c)
public static int lineNumber(NodeInfo node)
public static DocumentInfo discardDocument(XPathContext context, DocumentInfo doc)
context
- the evaluation context (supplied implicitly by the call mechanism)doc
- the document to be released from the document pool
public static boolean hasSameNodes(SequenceIterator p1, SequenceIterator p2) throws XPathException
p1
- The first node-set. The iterator must be correctly ordered.p2
- The second node-set. The iterator must be correctly ordered.
XPathException
public static SequenceIterator sort(XPathContext context, SequenceIterator input)
public static SequenceIterator sort(XPathContext context, SequenceIterator input, Evaluate.PreparedExpression sortKeyExpression)
public static Value highest(SequenceIterator nsv) throws XPathException
XPathException
public static SequenceIterator highest(XPathContext context, SequenceIterator nsv, Evaluate.PreparedExpression pexpression) throws XPathException
XPathException
public static Value lowest(SequenceIterator nsv) throws XPathException
XPathException
public static SequenceIterator lowest(XPathContext context, SequenceIterator nsv, Evaluate.PreparedExpression pexpression) throws XPathException
XPathException
public static SequenceIterator leading(XPathContext context, SequenceIterator in, Evaluate.PreparedExpression pexp)
public static SequenceIterator after(XPathContext context, SequenceIterator ns1, SequenceIterator ns2) throws XPathException
XPathException
public static SequenceIterator tokenize(String s)
public static SequenceIterator tokenize(String s, String delim)
public static String path(XPathContext c) throws XPathException
XPathException
public static String typeAnnotation(XPathContext context, NodeInfo node)
public static XPathContext getContext(XPathContext c)
public static Controller getController(XPathContext c)
public static Configuration getConfiguration(XPathContext c)
public static String getPseudoAttribute(XPathContext c, String name) throws XPathException
XPathException
public static DayTimeDurationValue dayTimeDurationFromSeconds(BigDecimal arg) throws XPathException
XPathException
public static YearMonthDurationValue yearMonthDurationFromMonths(int arg)
public static BigDecimal decimalDivide(BigDecimal arg1, BigDecimal arg2, int scale)
public static List stringToUtf8(String in)
in
- the supplied string
public static Base64BinaryValue octetsToBase64Binary(byte[] in)
public static HexBinaryValue octetsToHexBinary(byte[] in)
public static byte[] base64BinaryToOctets(Base64BinaryValue in)
public static byte[] hexBinaryToOctets(HexBinaryValue in)
public static String base64BinaryToString(XPathContext context, Base64BinaryValue in, String encoding) throws Exception
Exception
public static Base64BinaryValue stringToBase64Binary(String in, String encoding) throws UnsupportedEncodingException, IOException
UnsupportedEncodingException
IOException
public static String hexBinaryToString(XPathContext context, HexBinaryValue in, String encoding) throws Exception
Exception
public static HexBinaryValue stringToHexBinary(String in, String encoding) throws Exception
Exception
public static boolean validCharacter(XPathContext c, int in)
public static NodeInfo namespaceNode(XPathContext context, String prefix, String uri) throws XPathException
XPathException
public static boolean deepEqual(XPathContext context, SequenceIterator arg1, SequenceIterator arg2, String collation, String flags) throws XPathException
context
- The evaluation contextarg1
- The first sequence to be comparedarg2
- The second sequence to be comparedcollation
- The collation to be used (null if the default collation is to be used)flags
- A string whose characters select options that cause the comparison to vary from the
standard fn:deep-equals() function. The flags are:
XPathException
public static Templates compileStylesheet(XPathContext context, DocumentInfo doc) throws XPathException
XPathException
public static DocumentInfo transform(XPathContext context, Templates templates, NodeInfo source) throws XPathException
context
- The dynamic contexttemplates
- The compiled stylesheetsource
- The initial context node representing the document to be transformed
XPathException
public static DocumentInfo transform(XPathContext context, Templates templates, NodeInfo source, SequenceIterator params) throws XPathException
context
- The dynamic contexttemplates
- The compiled stylesheetsource
- The initial context node representing the document to be transformedparams
- A sequence of nodes (typically element nodes) supplying values of parameters.
The name of the node should match the name of the parameter, the typed value of the node is
used as the value of the parameter.
XPathException
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |