| Interface | Description |
|---|---|
| ObjectNavigableSet<T> |
A Type Specific Navigable Set interface with a couple helper methods
|
| ObjectSet<T> |
A Type Specific Set class to reduce boxing/unboxing
|
| ObjectSortedSet<T> |
A Type Specific SortedSet implementation to reduce boxing/unboxing
with a couple extra methods that allow greater control over sets.
|
| Class | Description |
|---|---|
| AbstractObjectSet<T> |
Abstract Type Specific Set that reduces boxing/unboxing
|
| ObjectArraySet<T> |
A Type Specific ArraySet implementation.
|
| ObjectAVLTreeSet<T> |
A Simple Type Specific AVL TreeSet implementation that reduces boxing/unboxing.
|
| ObjectLinkedOpenCustomHashSet<T> |
A Type Specific LinkedHashSet that allows for custom HashControl.
|
| ObjectLinkedOpenHashSet<T> |
A Type Specific LinkedHashMap implementation that uses specific arrays to create links between nodes to remove the wrapping of elements
to greatly reduce memory usage.
|
| ObjectOpenCustomHashSet<T> |
A Type Specific HashSet that allows for custom HashControl.
|
| ObjectOpenHashSet<T> |
A Type Specific Custom implementation of the HashSet
Instead of using Wrapper Object Arrays for storing keys and values there is dedicated arrays for storing keys.
|
| ObjectRBTreeSet<T> |
A Simple Type Specific RB TreeSet implementation that reduces boxing/unboxing.
|