|
healpix.core.base.set
Interface LongIterator
public interface LongIterator
This class represents iterators over collections of long values.
It returns primitive value, so there is no boxing overhead
- See Also:
Iterator
Method Summary |
boolean |
hasNext()
Indicates whether more long values can be returned by this
iterator. |
long |
next()
Returns the next long value of this iterator. |
hasNext
boolean hasNext()
- Indicates whether more long values can be returned by this
iterator.
- Returns:
- true if more long values can be returned
by this iterator; returns false
otherwise.
- See Also:
next()
next
long next()
- Returns the next long value of this iterator.
- Returns:
- the next long value of this iterator.
- Throws:
NoSuchElementException - if no more elements are available from this
iterator.- See Also:
hasNext()
|
|