java.util
Interface SortedMap

All Superinterfaces:
Map
All Known Implementing Classes:
TreeMap

public interface SortedMap
extends Map


Nested Class Summary
 
Nested classes inherited from class java.util.Map
Map.Entry
 
Method Summary
 Comparator comparator()
           
 Object firstKey()
           
 SortedMap headMap(Object)
           
 Object lastKey()
           
 SortedMap subMap(Object, Object)
           
 SortedMap tailMap(Object)
           
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 

Method Detail

comparator

public Comparator comparator()

subMap

public SortedMap subMap(Object,
                        Object)

headMap

public SortedMap headMap(Object)

tailMap

public SortedMap tailMap(Object)

firstKey

public Object firstKey()

lastKey

public Object lastKey()