Examples of docsToNodeSet()


Examples of org.exist.dom.DefaultDocumentSet.docsToNodeSet()

    DBBroker broker = null;
    try {
      broker = pool.get(user);
      final MutableDocumentSet docs = new DefaultDocumentSet();
      parent.getCollection().allDocs(broker, docs, inclusive);
      return broker.getTextEngine().scanIndexTerms(docs, docs.docsToNodeSet(),  start, end);
    } catch (final PermissionDeniedException e) {
      throw new XMLDBException(ErrorCodes.PERMISSION_DENIED,
        "permission denied", e);
    } catch (final EXistException e) {
      throw new XMLDBException(
View Full Code Here

Examples of org.exist.dom.DocumentSet.docsToNodeSet()

    if(attributeValue == null)
      {return null;}
    final AtomicValue comparison = new AnyURIValue(attributeValue);

    final DocumentSet documentSet = getPolicyDocuments(broker, true);
    final NodeSet nodeSet = documentSet.docsToNodeSet();

        final NativeValueIndex valueIndex = broker.getValueIndex();
        final Sequence results = valueIndex.find(null, Constants.EQ, documentSet, null, NodeSet.ANCESTOR, attributeQName, comparison);
//        Sequence results = index.findByQName(attributeQName, comparison, nodeSet);
    //TODO : should we honour (# exist:force-index-use #) ?
View Full Code Here

Examples of org.exist.dom.MutableDocumentSet.docsToNodeSet()

    DBBroker broker = null;
    try {
      broker = pool.get(user);
      final MutableDocumentSet docs = new DefaultDocumentSet();
      parent.getCollection().allDocs(broker, docs, inclusive);
      return broker.getTextEngine().scanIndexTerms(docs, docs.docsToNodeSet(),  start, end);
    } catch (final PermissionDeniedException e) {
      throw new XMLDBException(ErrorCodes.PERMISSION_DENIED,
        "permission denied", e);
    } catch (final EXistException e) {
      throw new XMLDBException(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.