This file contains 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
package com.designingmicroservices; | |
import java.util.Collection; | |
import java.util.Iterator; | |
/** | |
* Implements the Iterator on Collection of Collections. | |
* | |
* @author DesigningMicroservices.com | |
* |
This file contains 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
package com.designingmicroservices; | |
import java.util.ArrayList; | |
import java.util.Collection; | |
/** | |
* | |
* @author DesigningMicroservices.com | |
* | |
*/ |