Inherits from Wombat.Containers.SortedSet, ICloneable, Wombat.Containers.Set, Wombat.Containers.Collection, Wombat.Containers.Iterable
| Name | |
|---|---|
| TreeSet() | |
| TreeSet(Comparator c) | |
| TreeSet(Collection c) | |
| TreeSet(SortedSet s) | |
| Comparator | comparator() |
| SortedSet | subSet(object from, object to) |
| SortedSet | headSet(object to) |
| SortedSet | tailSet(object from) |
| object | first() |
| object | last() |
| int | size() |
| bool | isEmpty() |
| bool | contains(object o) |
| object[] | toArray() |
| bool | add(object o) |
| bool | remove(object o) |
| bool | containsAll(Collection c) |
| bool | addAll(Collection c) |
| bool | removeAll(Collection c) |
| bool | retainAll(Collection c) |
| void | clear() |
| Iterator | iterator() |
| object | Clone() Creates a deep clone of this TreeSet |
TreeSet()
TreeSet(
Comparator c
)
TreeSet(
Collection c
)
TreeSet(
SortedSet s
)
Comparator comparator()
Reimplements: Wombat::Containers::SortedSet::comparator
SortedSet subSet(
object from,
object to
)
Reimplements: Wombat::Containers::SortedSet::subSet
SortedSet headSet(
object to
)
Reimplements: Wombat::Containers::SortedSet::headSet
SortedSet tailSet(
object from
)
Reimplements: Wombat::Containers::SortedSet::tailSet
object first()
Reimplements: Wombat::Containers::SortedSet::first
object last()
Reimplements: Wombat::Containers::SortedSet::last
int size()
Reimplements: Wombat::Containers::Collection::size
bool isEmpty()
Reimplements: Wombat::Containers::Collection::isEmpty
bool contains(
object o
)
Reimplements: Wombat::Containers::Collection::contains
object[] toArray()
Reimplements: Wombat::Containers::Collection::toArray
bool add(
object o
)
Reimplements: Wombat::Containers::Collection::add
bool remove(
object o
)
Reimplements: Wombat::Containers::Collection::remove
bool containsAll(
Collection c
)
Reimplements: Wombat::Containers::Collection::containsAll
bool addAll(
Collection c
)
Reimplements: Wombat::Containers::Collection::addAll
bool removeAll(
Collection c
)
Reimplements: Wombat::Containers::Collection::removeAll
bool retainAll(
Collection c
)
Reimplements: Wombat::Containers::Collection::retainAll
void clear()
Reimplements: Wombat::Containers::Collection::clear
Iterator iterator()
Reimplements: Wombat::Containers::Iterable::iterator
object Clone()
Creates a deep clone of this TreeSet
Return:
Updated on 2023-03-31 at 15:30:18 +0100