Examples of DocumentCollectionIterator


Examples of org.openntf.domino.iterators.DocumentCollectionIterator

      org.openntf.domino.impl.DocumentCollection mergeColl = (org.openntf.domino.impl.DocumentCollection) db
          .createMergableDocumentCollection();
      for (int nid : getNids()) {
        mergeColl.merge(nid);
      }
      return new DocumentCollectionIterator(mergeColl);
    }
  }
View Full Code Here

Examples of org.openntf.domino.iterators.DocumentCollectionIterator

   * @see java.lang.Iterable#iterator()
   */
  @Override
  public Iterator<org.openntf.domino.Document> iterator() {
    //return new DocumentIterator(this);
    return new DocumentCollectionIterator(this);
  }
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.