KickJava   Java API By Example, From Geeks To Geeks.

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


1 package prefuse.util.collections;
2
3 /**
4  * Sorted map that maps from a long key to an int value.
5  *
6  * @author <a HREF="http://jheer.org">jeffrey heer</a>
7  */

8 public interface LongIntSortedMap extends IntSortedMap {
9
10     public long firstKey();
11
12     public long lastKey();
13
14     public boolean containsKey(long key);
15     
16     public IntIterator valueRangeIterator(long fromKey, boolean fromInc,
17                                           long toKey, boolean toInc);
18     
19     public LiteralIterator keyIterator();
20
21     public LiteralIterator keyRangeIterator(long fromKey, boolean fromInc,
22                                             long toKey, boolean toInc);
23
24     public int get(long key);
25
26     public int remove(long key);
27     
28     public int remove(long key, int value);
29
30     public int put(long key, int value);
31     
32 } // end of interface LongIntSortedMap
33
Popular Tags