public abstract class PJConverter
extends java.lang.Object
implements java.io.Serializable
| Constructor and Description |
|---|
PJConverter() |
| Modifier and Type | Method and Description |
|---|---|
static PJConverter |
allocate(Configuration config,
ItemType itemType,
int cardinality,
java.lang.Class targetClass)
Factory method to instantiate a converter from a given XPath type to a given Java class
|
static PJConverter |
allocateNodeListCreator(Configuration config,
java.lang.Object node)
Static method to get a converter from an XPath sequence of nodes to the representation of a NodeList
in an external object model (this is really a special for DOM, which uses NodeList rather than general
purpose Java collection classes)
|
java.lang.String |
compile(java.lang.String var,
java.lang.Class targetClass,
CodeGeneratorService compiler)
Generate Java code to implement the type conversion
|
abstract java.lang.Object |
convert(ValueRepresentation value,
java.lang.Class targetClass,
XPathContext context)
Convert an XPath value to a Java value of a specified class
|
static SequenceType |
getEquivalentItemType(java.lang.Class javaClass)
Get the nearest XPath equivalent to a Java class.
|
public static SequenceType getEquivalentItemType(java.lang.Class javaClass)
javaClass - a Java classpublic abstract java.lang.Object convert(ValueRepresentation value, java.lang.Class targetClass, XPathContext context) throws XPathException
value - the supplied XPath valuetargetClass - the class of the required Java valuecontext - the XPath dynamic contextXPathException - if the conversion is not possible or failspublic java.lang.String compile(java.lang.String var,
java.lang.Class targetClass,
CodeGeneratorService compiler)
var - the name of a variable whose value will be the XPath ValueRepresentation
to be convertedtargetClass - the required class of the Java valuecompiler - provides supporting services by callbackpublic static PJConverter allocate(Configuration config, ItemType itemType, int cardinality, java.lang.Class targetClass) throws XPathException
config - the Saxon ConfigurationitemType - the item type of the XPath value to be convertedcardinality - the cardinality of the XPath value to be convertedtargetClass - the Java class required for the conversion resultXPathExceptionpublic static PJConverter allocateNodeListCreator(Configuration config, java.lang.Object node)