| Interface | Description |
|---|---|
| DoubleSet |
A type-specific
Set; provides some additional methods that use polymorphism to avoid (un)boxing. |
| DoubleSortedSet |
A type-specific
SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing. |
| Class | Description |
|---|---|
| AbstractDoubleSet |
An abstract class providing basic methods for sets implementing a type-specific interface.
|
| AbstractDoubleSortedSet |
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
|
| DoubleArraySet |
A simple, brute-force implementation of a set based on a backing array.
|
| DoubleAVLTreeSet |
A type-specific AVL tree set with a fast, small-footprint implementation.
|
| DoubleLinkedOpenCustomHashSet |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| DoubleLinkedOpenHashSet |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| DoubleOpenCustomHashSet |
A type-specific hash set with a fast, small-footprint implementation whose hashing strategy
is specified at creation time.
|
| DoubleOpenHashSet |
A type-specific hash set with with a fast, small-footprint implementation.
|
| DoubleRBTreeSet |
A type-specific red-black tree set with a fast, small-footprint implementation.
|
| DoubleSets |
A class providing static methods and objects that do useful things with type-specific sets.
|
| DoubleSets.EmptySet |
An immutable class representing the empty set and implementing a type-specific set interface.
|
| DoubleSets.Singleton |
An immutable class representing a type-specific singleton set.
|
| DoubleSets.SynchronizedSet |
A synchronized wrapper class for sets.
|
| DoubleSets.UnmodifiableSet |
An unmodifiable wrapper class for sets.
|
| DoubleSortedSets |
A class providing static methods and objects that do useful things with type-specific sorted sets.
|
| DoubleSortedSets.EmptySet |
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
| DoubleSortedSets.Singleton |
A class representing a singleton sorted set.
|
| DoubleSortedSets.SynchronizedSortedSet |
A synchronized wrapper class for sorted sets.
|
| DoubleSortedSets.UnmodifiableSortedSet |
An unmodifiable wrapper class for sorted sets.
|