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 aBag
containing all the members of the given collection.TreeBag
(Comparator comparator) Deprecated.Constructs an emptyBag
that 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, uniqueSet
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.commons.collections.Bag
add, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSet
Methods 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 emptyBag
that maintains order on its unique representative members according to the givenComparator
.- Parameters:
comparator
- the comparator to use
-
TreeBag
Deprecated.Constructs aBag
containing all the members of the given collection.- Parameters:
coll
- the collection to copy into the bag
-
-
Method Details
-
first
Deprecated.Description copied from interface:SortedBag
Returns the first (lowest) member. -
last
Deprecated.Description copied from interface:SortedBag
Returns the last (highest) member. -
comparator
Deprecated.Description copied from interface:SortedBag
Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.- Specified by:
comparator
in interfaceSortedBag
- Returns:
- the comparator in use, or null if natural ordering
-