KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > prefuse > util > collections > LiteralIterator


1 package prefuse.util.collections;
2
3 import java.util.Iterator JavaDoc;
4
5 /**
6  * @author <a HREF="http://jheer.org">jeffrey heer</a>
7  */

8 public interface LiteralIterator extends Iterator JavaDoc {
9     
10     public int nextInt();
11     public boolean isIntSupported();
12     
13     public long nextLong();
14     public boolean isLongSupported();
15     
16     public float nextFloat();
17     public boolean isFloatSupported();
18     
19     public double nextDouble();
20     public boolean isDoubleSupported();
21     
22     public boolean nextBoolean();
23     public boolean isBooleanSupported();
24     
25 } // end of interface LiteralIterator
26
Popular Tags