Uses of Interface
javax.xml.xquery.XQSequence

Packages that use XQSequence
javax.xml.xquery   
 

Uses of XQSequence in javax.xml.xquery
 

Subinterfaces of XQSequence in javax.xml.xquery
 interface XQResultSequence
          This interface represents a sequence of items obtained as a result of evaluation XQuery expressions.
 

Methods in javax.xml.xquery that return XQSequence
 XQSequence XQDataFactory.createSequence(Iterator i)
          Creates an XQSequence, containing all the items from the iterator.
 XQSequence XQDataFactory.createSequence(XQSequence s)
          Creates a copy of the specified XQSequence.
 XQSequence XQQueryException.getErrorObject()
          Gets an XQSequence representing the error object passed to fn:error().
 

Methods in javax.xml.xquery with parameters of type XQSequence
 void XQDynamicContext.bindSequence(QName varName, XQSequence value)
          Binds a value to the given external variable or the context item.
 XQSequence XQDataFactory.createSequence(XQSequence s)
          Creates a copy of the specified XQSequence.
 

Constructors in javax.xml.xquery with parameters of type XQSequence
XQCancelledException(String message, String vendorCode, QName errorCode, int line, int column, int position, String moduleURI, XQSequence errorObject, XQStackTraceElement[] stackTrace)
          Constructs an XQCancelledException object with a given message, vendor code, error code, line number, column number, position, module URI, error object, and stack trace.
XQQueryException(String message, String vendorCode, QName errorCode, int line, int column, int position, String moduleURI, XQSequence errorObject, XQStackTraceElement[] stackTrace)
          Constructs an XQQueryException object with a given message, vendor code, error code, line number, column number, position, module URI, error object, and stack trace.