We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0991705 commit 717eb70Copy full SHA for 717eb70
src/main/java/com/maxmind/db/Networks.java
@@ -8,6 +8,12 @@
8
import java.util.Arrays;
9
import java.util.Iterator;
10
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
+ */
17
public class Networks<T> implements Iterator<DatabaseRecord<T>> {
18
private final Reader reader;
19
private ArrayList<NetworkNode> nodes;
0 commit comments