Package org.apache.commons.collections
Class TreeBag
- java.lang.Object
 - 
- org.apache.commons.collections.DefaultMapBag
 - 
- org.apache.commons.collections.TreeBag
 
 
 
- 
@Deprecated(since="2021-04-30") public class TreeBag extends DefaultMapBag implements SortedBag
Deprecated.Moved to bag subpackage and rewritten internally. Due to be removed in v4.0.ABagthat is backed by aTreeMap. Order will be maintained among the unique representative members.- Since:
 - Commons Collections 2.0
 
 
- 
- 
Constructor Summary
Constructors Constructor Description TreeBag()Deprecated.Constructs an emptyTreeBag.TreeBag(java.util.Collection coll)Deprecated.Constructs aBagcontaining all the members of the given collection.TreeBag(java.util.Comparator comparator)Deprecated.Constructs an emptyBagthat maintains order on its unique representative members according to the givenComparator. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.Comparatorcomparator()Deprecated.Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.java.lang.Objectfirst()Deprecated.Returns the first (lowest) member.java.lang.Objectlast()Deprecated.Returns the last (highest) member.- 
Methods inherited from class org.apache.commons.collections.DefaultMapBag
add, add, addAll, clear, contains, containsAll, containsAll, equals, getCount, hashCode, isEmpty, iterator, remove, remove, removeAll, retainAll, retainAll, size, toArray, toArray, toString, uniqueSet 
- 
Methods inherited from interface org.apache.commons.collections.Bag
add, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSet 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
TreeBag
public TreeBag()
Deprecated.Constructs an emptyTreeBag. 
- 
TreeBag
public TreeBag(java.util.Comparator comparator)
Deprecated.Constructs an emptyBagthat maintains order on its unique representative members according to the givenComparator.- Parameters:
 comparator- the comparator to use
 
- 
TreeBag
public TreeBag(java.util.Collection coll)
Deprecated.Constructs aBagcontaining all the members of the given collection.- Parameters:
 coll- the collection to copy into the bag
 
 - 
 
- 
Method Detail
- 
first
public java.lang.Object first()
Deprecated.Description copied from interface:SortedBagReturns the first (lowest) member. 
- 
last
public java.lang.Object last()
Deprecated.Description copied from interface:SortedBagReturns the last (highest) member. 
- 
comparator
public java.util.Comparator 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
 
 
 - 
 
 -