Skip to content

Instantly share code, notes, and snippets.

@Lokutus
Last active December 17, 2015 13:48
Show Gist options
  • Save Lokutus/5619419 to your computer and use it in GitHub Desktop.
Save Lokutus/5619419 to your computer and use it in GitHub Desktop.
Enumeration using irritating lotus.domino.DocumentCollection
Document doc;
Document document = collection.getFirstDocument();
while (document != null) {
// do something
doc = collection.getNextDocument();
document.recycle();
document = doc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment