XSLT - Data Type
Conversion
Xalan Conversions from XSLT to Java
| XSLT type | Java types (in decreasing order of preference) |
|---|---|
| node-set | org.w3c.dom.traversal.NodeIterator, org.w3c.dom.NodeList, org.w3c.dom.Node, String, Object, char, double, float, long, int, short, byte, boolean |
| string | String, Object, char, double, float, long, int, short, byte, boolean |
| boolean | boolean, Boolean, Object, String |
| number | double, Double, float, long, int, short, char, byte, boolean, String, Object |
| result tree fragment | org.w3c.dom.traversal.NodeIterator, org.w3c.dom.NodeList, org.w3c.dom.Node, String, Object, char, double, float, long, int, short, byte, boolean |
