net.opentsdb.core
Interface Aggregator.Longs

Enclosing interface:
Aggregator

public static interface Aggregator.Longs

A sequence of longs.

This interface is semantically equivalent to Iterator<long>.


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

Method Detail

hasNextValue

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


nextLongValue

long nextLongValue()
Returns the next long value in this sequence.

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