In other words, you can call {@link #iterator()} as often as you want, but the{@link IteratorCollection} will iterate over its delegate only once.
41424344454647
/** * @param resourceFinders delegate {@link ResourceFinder}s */ public LazyMultiResourceFinder(Iterator resourceFinders) { super(new IteratorCollection(resourceFinders)); }
42434445464748