#211 added further examples for structural and behavioral patterns

This commit is contained in:
Narendra Pathai
2016-08-20 20:49:28 +05:30
parent c79df708b1
commit a0c77c32b5
11 changed files with 47 additions and 7 deletions

View File

@ -4,7 +4,7 @@ title: Iterator
folder: iterator
permalink: /patterns/iterator/
categories: Behavioral
tags:
tags:
- Java
- Difficulty-Beginner
- Gang Of Four
@ -29,6 +29,7 @@ Use the Iterator pattern
## Real world examples
* [java.util.Iterator](http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html)
* [java.util.Enumeration](http://docs.oracle.com/javase/8/docs/api/java/util/Enumeration.html)
## Credits