| Interface | Description |
|---|---|
| ObjectSet<K> |
A type-specific
Set; provides some additional methods that use polymorphism to avoid (un)boxing. |
| ObjectSortedSet<K> |
A type-specific
SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing. |
| Class | Description |
|---|---|
| AbstractObjectSet<K> |
An abstract class providing basic methods for sets implementing a type-specific interface.
|
| AbstractObjectSortedSet<K> |
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
|
| ObjectArraySet<K> |
A simple, brute-force implementation of a set based on a backing array.
|
| ObjectAVLTreeSet<K> |
A type-specific AVL tree set with a fast, small-footprint implementation.
|
| ObjectLinkedOpenCustomHashSet<K> |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| ObjectLinkedOpenHashSet<K> |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| ObjectOpenCustomHashSet<K> |
A type-specific hash set with a fast, small-footprint implementation whose hashing strategy
is specified at creation time.
|
| ObjectOpenHashSet<K> |
A type-specific hash set with with a fast, small-footprint implementation.
|
| ObjectRBTreeSet<K> |
A type-specific red-black tree set with a fast, small-footprint implementation.
|
| ObjectSets |
A class providing static methods and objects that do useful things with type-specific sets.
|
| ObjectSets.EmptySet<K> |
An immutable class representing the empty set and implementing a type-specific set interface.
|
| ObjectSets.Singleton<K> |
An immutable class representing a type-specific singleton set.
|
| ObjectSets.SynchronizedSet<K> |
A synchronized wrapper class for sets.
|
| ObjectSets.UnmodifiableSet<K> |
An unmodifiable wrapper class for sets.
|
| ObjectSortedSets |
A class providing static methods and objects that do useful things with type-specific sorted sets.
|
| ObjectSortedSets.EmptySet<K> |
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
| ObjectSortedSets.Singleton<K> |
A class representing a singleton sorted set.
|
| ObjectSortedSets.SynchronizedSortedSet<K> |
A synchronized wrapper class for sorted sets.
|
| ObjectSortedSets.UnmodifiableSortedSet<K> |
An unmodifiable wrapper class for sorted sets.
|