| Interface | Description |
|---|---|
| CharSet |
A type-specific
Set; provides some additional methods that use polymorphism to avoid (un)boxing. |
| CharSortedSet |
A type-specific
SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing. |
| Class | Description |
|---|---|
| AbstractCharSet |
An abstract class providing basic methods for sets implementing a type-specific interface.
|
| AbstractCharSortedSet |
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
|
| CharArraySet |
A simple, brute-force implementation of a set based on a backing array.
|
| CharAVLTreeSet |
A type-specific AVL tree set with a fast, small-footprint implementation.
|
| CharLinkedOpenCustomHashSet |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| CharLinkedOpenHashSet |
A type-specific linked hash set with with a fast, small-footprint implementation.
|
| CharOpenCustomHashSet |
A type-specific hash set with a fast, small-footprint implementation whose hashing strategy
is specified at creation time.
|
| CharOpenHashSet |
A type-specific hash set with with a fast, small-footprint implementation.
|
| CharRBTreeSet |
A type-specific red-black tree set with a fast, small-footprint implementation.
|
| CharSets |
A class providing static methods and objects that do useful things with type-specific sets.
|
| CharSets.EmptySet |
An immutable class representing the empty set and implementing a type-specific set interface.
|
| CharSets.Singleton |
An immutable class representing a type-specific singleton set.
|
| CharSets.SynchronizedSet |
A synchronized wrapper class for sets.
|
| CharSets.UnmodifiableSet |
An unmodifiable wrapper class for sets.
|
| CharSortedSets |
A class providing static methods and objects that do useful things with type-specific sorted sets.
|
| CharSortedSets.EmptySet |
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
| CharSortedSets.Singleton |
A class representing a singleton sorted set.
|
| CharSortedSets.SynchronizedSortedSet |
A synchronized wrapper class for sorted sets.
|
| CharSortedSets.UnmodifiableSortedSet |
An unmodifiable wrapper class for sorted sets.
|