Uses of Interface
javax.xml.xquery.XQStaticContext

Packages that use XQStaticContext
javax.xml.xquery   
org.basex.api.xqj   
 

Uses of XQStaticContext in javax.xml.xquery
 

Methods in javax.xml.xquery that return XQStaticContext
 XQStaticContext XQPreparedExpression.getStaticContext()
          Gets an XQStaticContext representing the values for all expression properties.
 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.
 

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(java.io.InputStream xquery, XQStaticContext properties)
          Prepares an expression for execution.
 XQPreparedExpression XQConnection.prepareExpression(java.io.Reader xquery, XQStaticContext properties)
          Prepares an expression for execution.
 XQPreparedExpression XQConnection.prepareExpression(java.lang.String xquery, XQStaticContext properties)
          Prepares an expression for execution.
 void XQConnection.setStaticContext(XQStaticContext properties)
          Sets the default values for all expression properties.
 

Uses of XQStaticContext in org.basex.api.xqj
 

Classes in org.basex.api.xqj that implement XQStaticContext
 class BXQStaticContext
          Java XQuery API - Static Context.
 

Methods in org.basex.api.xqj that return XQStaticContext
 XQStaticContext BXQConnection.getStaticContext()
           
 XQStaticContext BXQExpression.getStaticContext()
           
 XQStaticContext BXQPreparedExpression.getStaticContext()
           
 

Methods in org.basex.api.xqj with parameters of type XQStaticContext
 XQExpression BXQConnection.createExpression(XQStaticContext sc)
           
 XQPreparedExpression BXQConnection.prepareExpression(java.io.InputStream is, XQStaticContext sc)
           
 XQPreparedExpression BXQConnection.prepareExpression(java.io.Reader r, XQStaticContext sc)
           
 XQPreparedExpression BXQConnection.prepareExpression(java.lang.String query, XQStaticContext sc)
           
 void BXQConnection.setStaticContext(XQStaticContext sc)