类 JoinedIterator<T>
- java.lang.Object
-
- org.hibernate.internal.util.collections.JoinedIterator<T>
-
- 所有已实现的接口:
Iterator<T>
public class JoinedIterator<T> extends Object implements Iterator<T>
An Iterator implementation that wraps other Iterators, and presents them all as one continuous Iterator. When any method from Iterator is called, we delegate to each wrapped Iterator in turn until all wrapped Iterators are exhausted.- 作者:
- Gavine King, Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 JoinedIterator(Iterator<T>... iteratorsToWrap)JoinedIterator(List<Iterator<T>> wrappedIterators)
-