Skip to content

Commit 717eb70

Browse files
committed
Add javadocs for Networks
1 parent 0991705 commit 717eb70

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/maxmind/db/Networks.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
import java.util.Arrays;
99
import java.util.Iterator;
1010

11+
/**
12+
* Instances of this class provide an iterator over the networks in a database.
13+
* The iterator will return a {@link DatabaseRecord} for each network.
14+
*
15+
* @param <T> The type of data returned by the iterator.
16+
*/
1117
public class Networks<T> implements Iterator<DatabaseRecord<T>> {
1218
private final Reader reader;
1319
private ArrayList<NetworkNode> nodes;

0 commit comments

Comments
 (0)