01: /*
02: * Created on 16-Aug-2003
03: */
04: package uk.org.ponder.doubleutil;
05:
06: /**
07: * @author Bosmon
08: *
09: * The class const IntIterator represents an iteration through a sequence
10: * of unmodifiable native integers.
11: */
12: public interface constDoubleIterator {
13: /** Does the sequence contain another integer?*/
14: public boolean hasNextDouble();
15:
16: /** Steps the iterator along to the next element of the sequence */
17: public void next();
18:
19: /** Returns the integer currently pointed at by this iterator */
20: public double getDouble();
21: }
|