public class TreeBag extends DefaultMapBag implements SortedBag
Bag
that is backed by a TreeMap
.
Order will be maintained among the unique representative
members.Constructor and 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 and 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, addAll, calcTotalSize, clear, contains, containsAll, containsAll, equals, getCount, getMap, hashCode, isEmpty, iterator, remove, remove, removeAll, retainAll, retainAll, setMap, size, toArray, toArray, toString, uniqueSet
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
public 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()
SortedBag
public java.lang.Object last()
SortedBag
public java.util.Comparator comparator()
SortedBag
comparator
in interface SortedBag
Copyright © 2001-2012 Apache Software Foundation. All Rights Reserved.