Package gw.util.diff.sorted
Class DiffIterator<T>
java.lang.Object
gw.util.diff.sorted.DiffIterator<T>
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDiffIterator
(Iterable<T> oldIterable, Iterable<T> newIterable) DiffIterator
(Iterable<T> oldIterable, Iterable<T> newIterable, Comparator<? super T> comparator) DiffIterator
(Iterator<T> oldIterator, Iterator<T> newIterator) DiffIterator
(Iterator<T> oldIterator, Iterator<T> newIterator, Comparator<? super T> comparator) -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
_oldIterator
-
_newIterator
-
_oldItem
-
_newItem
-
_comparator
-
_next
-
-
Constructor Details
-
DiffIterator
-
DiffIterator
-
DiffIterator
-
DiffIterator
-
-
Method Details
-
hasNext
public boolean hasNext() -
next
-
remove
public void remove() -
calcNext
private void calcNext() -
nextOld
private void nextOld() -
nextNew
private void nextNew() -
compare
-