Class BmEmptyLongIterator
- java.lang.Object
-
- com._1c.g5.v8.bm.common.collections.BmEmptyLongIterator
-
- All Implemented Interfaces:
IBmLongIterator
public final class BmEmptyLongIterator extends Object implements IBmLongIterator
Emptylong
iterator.
-
-
Constructor Summary
Constructors Constructor Description BmEmptyLongIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Returnstrue
if the iteration has more elements.long
next()
Returns the next element in the iteration.
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
Description copied from interface:IBmLongIterator
Returnstrue
if the iteration has more elements. (In other words, returnstrue
ifIBmLongIterator.next()
would return an element rather than throwing an exception.)- Specified by:
hasNext
in interfaceIBmLongIterator
- Returns:
true
if the iteration has more elements
-
next
public long next()
Description copied from interface:IBmLongIterator
Returns the next element in the iteration.- Specified by:
next
in interfaceIBmLongIterator
- Returns:
- the next element in the iteration
-
-