Uses of Interface
com.google.common.collect.PeekingIterator
-
Packages that use PeekingIterator Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of PeekingIterator in com.google.common.collect
Classes in com.google.common.collect that implement PeekingIterator Modifier and Type Class Description private class
BinaryTreeTraverser.PreOrderIterator
private static class
Iterators.PeekingImpl<E>
Implementation of PeekingIterator that avoids peeking unless necessary.private class
TreeTraverser.BreadthFirstIterator
Fields in com.google.common.collect with type parameters of type PeekingIterator Modifier and Type Field Description (package private) java.util.Queue<PeekingIterator<T>>
Iterators.MergingIterator. queue
Methods in com.google.common.collect that return PeekingIterator Modifier and Type Method Description static <T> PeekingIterator<T>
Iterators. peekingIterator(PeekingIterator<T> iterator)
Deprecated.no need to use thisstatic <T> PeekingIterator<T>
Iterators. peekingIterator(java.util.Iterator<? extends T> iterator)
Returns aPeekingIterator
backed by the given iterator.Methods in com.google.common.collect with parameters of type PeekingIterator Modifier and Type Method Description static <T> PeekingIterator<T>
Iterators. peekingIterator(PeekingIterator<T> iterator)
Deprecated.no need to use this
-