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(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(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
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Comparatorcomparator()Deprecated.Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.Objectfirst()Deprecated.Returns the first (lowest) member.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
-
Methods inherited from interface java.util.Collection
addAll, clear, contains, equals, hashCode, isEmpty, parallelStream, removeIf, spliterator, stream, toArray, toArray, toArray
-
-
-
-
Constructor Detail
-
TreeBag
public TreeBag()
Deprecated.Constructs an emptyTreeBag.
-
TreeBag
public TreeBag(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(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 Object first()
Deprecated.Description copied from interface:SortedBagReturns the first (lowest) member.
-
last
public Object last()
Deprecated.Description copied from interface:SortedBagReturns the last (highest) member.
-
comparator
public 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
-
-