Staging
v0.5.0
https://repo1.maven.org/maven2/org/prefuse/prefuse
Raw File
LiteralIterator.java
package prefuse.util.collections;

import java.util.Iterator;

/**
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public interface LiteralIterator extends Iterator {
    
    public int nextInt();
    public boolean isIntSupported();
    
    public long nextLong();
    public boolean isLongSupported();
    
    public float nextFloat();
    public boolean isFloatSupported();
    
    public double nextDouble();
    public boolean isDoubleSupported();
    
    public boolean nextBoolean();
    public boolean isBooleanSupported();
    
} // end of interface LiteralIterator
back to top