net.opentsdb.core
Interface Aggregator.Doubles

Enclosing interface:
Aggregator

public static interface Aggregator.Doubles

A sequence of doubles.

This interface is semantically equivalent to Iterator<double>.


Method Summary
 boolean hasNextValue()
          Returns true if this sequence has more values.
 double nextDoubleValue()
          Returns the next double value in this sequence.
 

Method Detail

hasNextValue

boolean hasNextValue()
Returns true if this sequence has more values. false otherwise.


nextDoubleValue

double nextDoubleValue()
Returns the next double value in this sequence.

Throws:
NoSuchElementException - if calling hasNextValue() returns false.