Package net.sf.saxon.javax.xml.xquery
Interface XQExpression
-
- All Superinterfaces:
XQDynamicContext
- All Known Implementing Classes:
SaxonXQExpression
public interface XQExpression extends XQDynamicContext
XQJ interfaces reconstructed from version 0.5 documentation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcancel()voidclearWarnings()voidclose()voidexecuteCommand(java.io.Reader command)voidexecuteCommand(java.lang.String command)XQResultSequenceexecuteQuery(java.io.InputStream query)XQResultSequenceexecuteQuery(java.io.Reader query)XQResultSequenceexecuteQuery(java.lang.String query)intgetQueryLanguageTypeAndVersion()intgetQueryTimeout()XQWarninggetWarnings()booleanisClosed()voidsetQueryTimeout(int seconds)-
Methods inherited from interface net.sf.saxon.javax.xml.xquery.XQDynamicContext
bindAtomicValue, bindBoolean, bindByte, bindContextItem, bindDocument, bindDouble, bindFloat, bindInt, bindItem, bindLong, bindNode, bindObject, bindSequence, bindShort, getImplicitTimeZone, setImplicitTimeZone
-
-
-
-
Method Detail
-
cancel
void cancel() throws XQException- Throws:
XQException
-
clearWarnings
void clearWarnings() throws XQException- Throws:
XQException
-
close
void close()
-
executeCommand
void executeCommand(java.io.Reader command) throws XQException- Throws:
XQException
-
executeCommand
void executeCommand(java.lang.String command) throws XQException- Throws:
XQException
-
executeQuery
XQResultSequence executeQuery(java.io.InputStream query) throws XQException
- Throws:
XQException
-
executeQuery
XQResultSequence executeQuery(java.io.Reader query) throws XQException
- Throws:
XQException
-
executeQuery
XQResultSequence executeQuery(java.lang.String query) throws XQException
- Throws:
XQException
-
getQueryLanguageTypeAndVersion
int getQueryLanguageTypeAndVersion() throws XQException- Throws:
XQException
-
getQueryTimeout
int getQueryTimeout() throws XQException- Throws:
XQException
-
getWarnings
XQWarning getWarnings() throws XQException
- Throws:
XQException
-
isClosed
boolean isClosed()
-
setQueryTimeout
void setQueryTimeout(int seconds) throws XQException- Throws:
XQException
-
-