Package org.apache.commons.collections
Class TreeBag
java.lang.Object
org.apache.commons.collections.DefaultMapBag
org.apache.commons.collections.TreeBag
- All Implemented Interfaces:
Iterable,Collection,Bag,SortedBag
Deprecated.
Moved to bag subpackage and rewritten internally. Due to be removed in v4.0.
A
Bag that is backed by a TreeMap.
Order will be maintained among the unique representative
members.- Since:
- Commons Collections 2.0
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
- Author:
- Chuck Burdick
-
Constructor Summary
ConstructorsConstructorDescriptionTreeBag()Deprecated.Constructs an emptyTreeBag.TreeBag(Collection coll) Deprecated.Constructs aBagcontaining all the members of the given collection.TreeBag(Comparator comparator) Deprecated.Constructs an emptyBagthat maintains order on its unique representative members according to the givenComparator. -
Method Summary
Methods inherited from class org.apache.commons.collections.DefaultMapBag
add, add, addAll, calcTotalSize, clear, contains, containsAll, containsAll, equals, getCount, getMap, hashCode, isEmpty, iterator, remove, remove, removeAll, retainAll, retainAll, setMap, size, toArray, toArray, toString, uniqueSetMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.commons.collections.Bag
add, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSetMethods inherited from interface java.util.Collection
addAll, clear, contains, equals, hashCode, isEmpty, parallelStream, removeIf, spliterator, stream, toArray, toArray, toArray
-
Constructor Details
-
TreeBag
public TreeBag()Deprecated.Constructs an emptyTreeBag. -
TreeBag
Deprecated.Constructs an emptyBagthat maintains order on its unique representative members according to the givenComparator.- Parameters:
comparator- the comparator to use
-
TreeBag
Deprecated.Constructs aBagcontaining all the members of the given collection.- Parameters:
coll- the collection to copy into the bag
-
-
Method Details
-
first
Deprecated.Description copied from interface:SortedBagReturns the first (lowest) member. -
last
Deprecated.Description copied from interface:SortedBagReturns the last (highest) member. -
comparator
Deprecated.Description copied from interface:SortedBagReturns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.- Specified by:
comparatorin interfaceSortedBag- Returns:
- the comparator in use, or null if natural ordering
-