Package com.google.common.collect
Class LinkedListMultimap.DistinctKeyIterator
- java.lang.Object
-
- com.google.common.collect.LinkedListMultimap.DistinctKeyIterator
-
- All Implemented Interfaces:
java.util.Iterator<K>
- Enclosing class:
- LinkedListMultimap<K,V>
private class LinkedListMultimap.DistinctKeyIterator extends java.lang.Object implements java.util.Iterator<K>AnIteratorover distinct keys in key head order.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) LinkedListMultimap.Node<K,V>current(package private) intexpectedModCount(package private) LinkedListMultimap.Node<K,V>next(package private) java.util.Set<K>seenKeys
-
Constructor Summary
Constructors Modifier Constructor Description privateDistinctKeyIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidcheckForConcurrentModification()booleanhasNext()Knext()voidremove()
-
-
-
Field Detail
-
seenKeys
final java.util.Set<K> seenKeys
-
next
LinkedListMultimap.Node<K,V> next
-
current
LinkedListMultimap.Node<K,V> current
-
expectedModCount
int expectedModCount
-
-