Uses of Interface
javax.xml.xquery.XQStaticContext

Packages that use XQStaticContext
com.xqj2 Contains proposed additions to the XQuery API for Java™ 1.0
javax.xml.xquery   
 

Uses of XQStaticContext in com.xqj2
 

Methods in com.xqj2 with parameters of type XQStaticContext
<T> T
XQConnection2.createModuleProxy(String namespaceUri, String moduleUri, Class<T> clazz, XQStaticContext properties)
          Creates a Module Proxy, a Java Facade of an XQuery Library Module.
 

Uses of XQStaticContext in javax.xml.xquery
 

Methods in javax.xml.xquery that return XQStaticContext
 XQStaticContext XQConnection.getStaticContext()
          Gets an XQStaticContext representing the default values for all expression properties.
 XQStaticContext XQExpression.getStaticContext()
          Gets an XQStaticContext representing the values for all expression properties.
 XQStaticContext XQPreparedExpression.getStaticContext()
          Gets an XQStaticContext representing the values for all expression properties.
 

Methods in javax.xml.xquery with parameters of type XQStaticContext
 XQExpression XQConnection.createExpression(XQStaticContext properties)
          Creates a new XQExpression object that can be used to perform execute immediate operations with XQuery expressions.
 XQPreparedExpression XQConnection.prepareExpression(InputStream xquery, XQStaticContext properties)
          Prepares an expression for execution.
 XQPreparedExpression XQConnection.prepareExpression(Reader xquery, XQStaticContext properties)
          Prepares an expression for execution.
 XQPreparedExpression XQConnection.prepareExpression(String xquery, XQStaticContext properties)
          Prepares an expression for execution.
 void XQConnection.setStaticContext(XQStaticContext properties)
          Sets the default values for all expression properties.