Last active
December 17, 2015 13:48
-
-
Save Lokutus/5619419 to your computer and use it in GitHub Desktop.
Enumeration using irritating lotus.domino.DocumentCollection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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