All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prefuse.util.collections.LiteralIterator Maven / Gradle / Ivy

Go to download

Prefuse is a set of software tools for creating rich interactive data visualizations in the Java programming language.

The newest version!
package prefuse.util.collections;

import java.util.Iterator;

/**
 * @author jeffrey heer
 */
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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy