public class TreeBag extends DefaultMapBag implements SortedBag
Bag that is backed by a TreeMap.
Order will be maintained among the unique representative
members.| Constructor | Description |
|---|---|
TreeBag() |
Deprecated.
Constructs an empty
TreeBag. |
TreeBag(java.util.Collection coll) |
Deprecated.
Constructs a
Bag containing all the members of the given
collection. |
TreeBag(java.util.Comparator comparator) |
Deprecated.
Constructs an empty
Bag that maintains order on its unique
representative members according to the given Comparator. |
| Modifier and Type | Method | Description |
|---|---|---|
java.util.Comparator |
comparator() |
Deprecated.
Returns the comparator associated with this sorted set, or null
if it uses its elements' natural ordering.
|
java.lang.Object |
first() |
Deprecated.
Returns the first (lowest) member.
|
java.lang.Object |
last() |
Deprecated.
Returns the last (highest) member.
|
add, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSetaddAll, clear, contains, equals, hashCode, isEmpty, parallelStream, removeIf, spliterator, stream, toArray, toArrayadd, add, addAll, calcTotalSize, clear, contains, containsAll, containsAll, equals, getCount, getMap, hashCode, isEmpty, iterator, remove, remove, removeAll, retainAll, retainAll, setMap, size, toArray, toArray, toString, uniqueSetpublic TreeBag()
TreeBag.public TreeBag(java.util.Comparator comparator)
Bag that maintains order on its unique
representative members according to the given Comparator.comparator - the comparator to usepublic TreeBag(java.util.Collection coll)
Bag containing all the members of the given
collection.coll - the collection to copy into the bagpublic java.lang.Object first()
SortedBagpublic java.lang.Object last()
SortedBagpublic java.util.Comparator comparator()
SortedBagcomparator in interface SortedBagCopyright © 2001-2018 Apache Software Foundation. All Rights Reserved.