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, clear, contains, containsAll, containsAll, equals, getCount, hashCode, isEmpty, iterator, remove, remove, removeAll, retainAll, retainAll, size, toArray, toArray, toString, uniqueSet
add, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSet
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 © 2010 - 2020 Adobe. All Rights Reserved