Qizx fe-4.4p2 API

Uses of Class
com.qizx.api.EvaluationException

Packages that use EvaluationException
com.qizx.api API of the embeddable version of the Qizx XML Query engine. 
com.qizx.api.util.fulltext This package contains the built-in implementation of full-text features. 
com.qizx.apps.restapi HTTP client for the Qizx REST API. 
 

Uses of EvaluationException in com.qizx.api
 

Methods in com.qizx.api that throw EvaluationException
 void Expression.bindImplicitCollection(ItemSequence nodes)
          Defines the Implicit Collection as a set of Nodes defined by a sequence (see above for a definition of Implicit Collection).
 void Expression.bindImplicitCollection(LibraryMemberIterator roots)
          Defines the Implicit Collection as a set of Documents defined by a query.
 void Expression.bindVariable(QName varName, long value, ItemType type)
          Binds a variable to a value obtained by converting a long integer to an Item.
 void Expression.bindVariable(QName varName, Object value, ItemType type)
          Binds a variable to a value obtained by converting a Java object to an Item or a ItemSequence, according to the general Java to XQuery type mapping (see the documentation for details).
 ItemSequence ItemFactory.copySequence(ItemSequence sequence)
          Creates a copy of the specified Sequence.
 long ItemSequence.countItems()
          Returns the total number of items, without moving the current position.
 Item ItemFactory.createItem(InputSource source)
          Creates a Document Node item by parsing a document.
 Item ItemFactory.createItem(long value, ItemType type)
          Creates an Item of type xs:integer, or one of its sub-types.
 Item ItemFactory.createItem(Object value, ItemType type)
          Creates an item from a given object according to the general Java to XQuery type mapping, also used in the Java Binding extension.
 Item ItemFactory.createItem(XMLPullStream source)
          Creates a Node item by reading a XML stream.
 ItemSequence ItemFactory.createSequence(Object object, SequenceType type)
          Creates a sequence from a Java object.
 long ItemSequence.estimatedDocumentCount()
          Returns an estimation of the number of Documents returned by this sequence.
 long ItemSequence.estimatedDocumentCount(int minimalPosition)
          Returns an estimation of the number of Documents returned by this sequence.
 ItemSequence Expression.evaluate()
          Evaluation of the expression, returns a sequence of Items.
 XMLPullStream Item.exportNode()
          Streaming export of a Node, in "pull" mode.
 boolean Item.getBoolean()
          Gets the item's boolean value.
 BigDecimal Item.getDecimal()
          Gets the item's decimal value.
 double Item.getDouble()
          Gets the item's double value.
 float Item.getFloat()
          Gets the item's float value.
 double ItemSequence.getFulltextScore()
          Returns the full-text score, if applicable.
 long Item.getInteger()
          Gets the item's integer value.
 Node Item.getNode()
          Gets the item's Node value.
 QName Item.getQName()
          Gets the item's QName value.
 String Item.getString()
          Gets the item's String value.
 ItemType Item.getType()
          Returns the XQuery type of the item.
 void ItemSequence.moveTo(long position)
          Moves the current position to the specified value.
 boolean ItemSequence.moveToNextItem()
          Moves to the next item.
 ItemSequence Expression.profile()
          Evaluation of the expression, returns a sequence of Items.
 LibraryMemberIterator Collection.queryProperties(Expression query)
          Returns an iterator over descendant Documents and Collections whose properties match a boolean XQuery expression.
 int ItemSequence.skip(int count)
          Skips items in forward direction.
 void QizxException.substituteCode(String oldCode, String newCode)
           
 

Uses of EvaluationException in com.qizx.api.util.fulltext
 

Constructors in com.qizx.api.util.fulltext that throw EvaluationException
FullTextHighlighter(Expression query)
          Creates a FullTextHighlighter from a compiled XQuery Expression.
FullTextSnippetExtractor(Expression query)
          Creates a FullTextSnippetExtractor from a compiled expression.
FullTextSnippetExtractor(com.qizx.queries.FullText.Selection query, FullTextFactory ftFactory)
          For internal use.
 

Uses of EvaluationException in com.qizx.apps.restapi
 

Methods in com.qizx.apps.restapi that throw EvaluationException
 ItemSequence RestAPIConnection.eval(String query, String format)
          Sends an evaluates an XQuery script, returns the response as a sequence of XQuery Items.
 ItemSequence RestAPIConnection.eval(String query, String format, String encoding, int maxTime, String counting, String mode, int itemCount, int firstItem)
          Sends an evaluates an XQuery script, returns the response as a page of XQuery Items.
 ItemSequence RestAPIConnection.evalAsItems(String query, String mode, int itemCount, int firstItem)
          Sends an evaluates an XQuery script, returns the response as a page of XQuery Items.
 LibraryMemberIterator RestAPIConnection.getMembers(String path, int depth, String[] properties)
          Returns an iterator over XML Library members
 LibraryMemberIterator RestAPIConnection.queryProp(String path, String query, String[] properties)
          Looks for Library members matching a query on metadata properties.
 com.qizx.util.rest.RESTClient.Response RestAPIConnection.rawEval(String query, String format, String encoding, int maxTime, String counting, String mode, int itemCount, int firstItem)
          Evaluation without parsing of the response (internal use).
 


© 2010 Axyana Software