Interface CloseableLongIterator
-
- All Superinterfaces:
java.lang.AutoCloseable
,LongIterator
- All Known Subinterfaces:
SkippingLongIterator
- All Known Implementing Classes:
AbstractLongIterator
,AbstractSkippingLongIterator
,ConstantAppendingLongIterator
,TransformingLongIterator
public interface CloseableLongIterator extends LongIterator, java.lang.AutoCloseable
- Since:
- 5.0.4
- Version:
- 5.0.6
- Author:
- Pavel Klinov
-
-
Field Summary
-
Fields inherited from interface com.complexible.common.primitives.LongIterator
NO_NEXT_ELEMENT
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
static CloseableLongIterator
of(LongIterator iterator)
-
Methods inherited from interface com.complexible.common.primitives.LongIterator
hasNext, next
-
-
-
-
Method Detail
-
close
void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
-
of
static CloseableLongIterator of(LongIterator iterator)
-
-