Generated by
JDiff

Class java.util.TreeMap

Documentation changed from old to new.

Changed Constructors
TreeMap(Comparator) Documentation changed from old to new.
Constructs a new empty map sorted according to the given comparator.
TreeMap(Map) Documentation changed from old to new.
Constructs a new map containing the same mappings as the given map sorted according to the keys' natural order.
TreeMap(SortedMap) Documentation changed from old to new.
Constructs a new map containing the same mappings as the given SortedMap sorted according to the same ordering.
 

Changed Methods
boolean containsValue(Object) Documentation changed from old to new.
Returns true if this map maps one or more keys to the specified value.
SortedMap headMap(Object) Documentation changed from old to new.
Returns a view of the portion of this map whose keys are strictly less than toKey.
void putAll(Map) Documentation changed from old to new.
Copies all of the mappings from the specified map to this map.
SortedMap subMap(Object, Object) Documentation changed from old to new.
Returns a view of the portion of this map whose keys range from fromKey inclusive to toKey exclusive.
SortedMap tailMap(Object) Documentation changed from old to new.
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.