Class BmConcatLongIterator
- java.lang.Object
- 
- com._1c.g5.v8.bm.common.collections.BmConcatLongIterator
 
- 
- All Implemented Interfaces:
- IBmLongIterator
 
 public final class BmConcatLongIterator extends Object implements IBmLongIterator The concatenating iterator overlongvalues.
- 
- 
Constructor SummaryConstructors Constructor Description BmConcatLongIterator(IBmLongIterator... targetIterators)Constructs a new instance.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Returnstrueif the iteration has more elements.longnext()Returns the next element in the iteration.
 
- 
- 
- 
Constructor Detail- 
BmConcatLongIteratorpublic BmConcatLongIterator(IBmLongIterator... targetIterators) Constructs a new instance.- Parameters:
- targetIterators- The target iterators. May not be- null.
 
 
- 
 - 
Method Detail- 
hasNextpublic boolean hasNext() Description copied from interface:IBmLongIteratorReturnstrueif the iteration has more elements. (In other words, returnstrueifIBmLongIterator.next()would return an element rather than throwing an exception.)- Specified by:
- hasNextin interface- IBmLongIterator
- Returns:
- trueif the iteration has more elements
 
 - 
nextpublic long next() Description copied from interface:IBmLongIteratorReturns the next element in the iteration.- Specified by:
- nextin interface- IBmLongIterator
- Returns:
- the next element in the iteration
 
 
- 
 
-