net.opentsdb.core
public static interface Aggregator.Longs
longs.
This interface is semantically equivalent to
Iterator<long>.
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNextValue()
Returns
true if this sequence has more values. |
long |
nextLongValue()
Returns the next
long value in this sequence. |
boolean hasNextValue()
true if this sequence has more values.
false otherwise.long nextLongValue()
long value in this sequence.NoSuchElementException - if calling hasNextValue() returns
false.