Generated by
JDiff

Class java.util.TreeSet

Documentation changed from old to new.

Changed Constructors
TreeSet(Comparator) Documentation changed from old to new.
Constructs a new empty set sorted according to the given comparator.
 

Changed Methods
Comparator comparator() Documentation changed from old to new.
Returns the comparator used to order this sorted set or null if this tree set uses its elements natural ordering.
SortedSet headSet(Object) Documentation changed from old to new.
Returns a view of the portion of this set whose elements are strictly less than toElement.
SortedSet subSet(Object, Object) Documentation changed from old to new.
Returns a view of the portion of this set whose elements range from fromElement inclusive to toElement exclusive.
SortedSet tailSet(Object) Documentation changed from old to new.
Returns a view of the portion of this set whose elements are greater than or equal to fromElement.