| Interface | Description |
|---|---|
| ByteSet |
A type-specific
Set; provides some additional methods that use polymorphism to avoid (un)boxing. |
| ByteSortedSet |
A type-specific
SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing. |
| Class | Description |
|---|---|
| AbstractByteSet |
An abstract class providing basic methods for sets implementing a type-specific interface.
|
| AbstractByteSortedSet |
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
|
| ByteArraySet |
A simple, brute-force implementation of a set based on a backing array.
|
| ByteAVLTreeSet |
A type-specific AVL tree set with a fast, small-footprint implementation.
|
| ByteLinkedOpenCustomHashSet |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| ByteLinkedOpenHashSet |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| ByteOpenCustomHashSet |
A type-specific hash set with a fast, small-footprint implementation whose hashing strategy
is specified at creation time.
|
| ByteOpenHashSet |
A type-specific hash set with with a fast, small-footprint implementation.
|
| ByteRBTreeSet |
A type-specific red-black tree set with a fast, small-footprint implementation.
|
| ByteSets |
A class providing static methods and objects that do useful things with type-specific sets.
|
| ByteSets.EmptySet |
An immutable class representing the empty set and implementing a type-specific set interface.
|
| ByteSets.Singleton |
An immutable class representing a type-specific singleton set.
|
| ByteSets.SynchronizedSet |
A synchronized wrapper class for sets.
|
| ByteSets.UnmodifiableSet |
An unmodifiable wrapper class for sets.
|
| ByteSortedSets |
A class providing static methods and objects that do useful things with type-specific sorted sets.
|
| ByteSortedSets.EmptySet |
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
| ByteSortedSets.Singleton |
A class representing a singleton sorted set.
|
| ByteSortedSets.SynchronizedSortedSet |
A synchronized wrapper class for sorted sets.
|
| ByteSortedSets.UnmodifiableSortedSet |
An unmodifiable wrapper class for sorted sets.
|