575859606162636465
if( false == idIterator.hasNext() ) { throw new Exception("No more document on schema"); } String docId = idIterator.next(); DocumentCouchDb doc = DocumentCouchDb.documentFromCouchDb(couchDb, docId); return doc; }
444546474849505152
if( false == idIterator.hasNext() ) { throw new Exception("No more document on list of docIds"); } String docId = idIterator.next(); DocumentCouchDb doc = DocumentCouchDb.documentFromCouchDb(couchDb, docId); return doc; }
565758596061626364
if( false == idIterator.hasNext() ) { throw new Exception("No more document on layer"); } String docId = idIterator.next(); DocumentCouchDb doc = DocumentCouchDb.documentFromCouchDb(couchDb, docId); return doc; }