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