
prefuse.util.collections.IntSortedMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefuse-vienna Show documentation
Show all versions of prefuse-vienna Show documentation
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.Comparator;
/**
* @author jeffrey heer
*/
public interface IntSortedMap {
public int getMinimum();
public int getMaximum();
public int getMedian();
public int getUniqueCount();
public boolean isAllowDuplicates();
public int size();
public boolean isEmpty();
public Comparator comparator();
public void clear();
public boolean containsValue(int value);
public IntIterator valueIterator(boolean ascending);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy