|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.commons.collections.DefaultMapBag | +--org.apache.commons.collections.TreeBag
A Bag
that is backed by a TreeMap
.
Order will be maintained among the unique representative
members.
Constructor Summary | |
TreeBag()
Deprecated. Constructs an empty TreeBag . |
|
TreeBag(Collection coll)
Deprecated. Constructs a Bag containing all the members of the given
collection. |
|
TreeBag(Comparator comparator)
Deprecated. Constructs an empty Bag that maintains order on its unique
representative members according to the given Comparator . |
Method Summary | |
Comparator |
comparator()
Deprecated. Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering. |
Object |
first()
Deprecated. Returns the first (lowest) member. |
Object |
last()
Deprecated. Returns the last (highest) member. |
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, toArray, toArray |
Constructor Detail |
public TreeBag()
TreeBag
.
public TreeBag(Comparator comparator)
Bag
that maintains order on its unique
representative members according to the given Comparator
.
comparator
- the comparator to usepublic TreeBag(Collection coll)
Bag
containing all the members of the given
collection.
coll
- the collection to copy into the bagMethod Detail |
public Object first()
SortedBag
first
in interface SortedBag
public Object last()
SortedBag
last
in interface SortedBag
public Comparator comparator()
SortedBag
comparator
in interface SortedBag
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |