| Interface | Description |
|---|---|
| ObjectBidirectionalIterator<K> |
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing,
and the possibility to skip elements backwards.
|
| ObjectCollection<K> |
A type-specific
Collection; provides some additional methods
that use polymorphism to avoid (un)boxing. |
| ObjectIterable<K> |
A type-specific
Iterable that strengthens that specification of Iterable.iterator(). |
| ObjectIterator<K> |
A type-specific
Iterator; provides an additional method to avoid (un)boxing, and
the possibility to skip elements. |
| ObjectList<K> |
A type-specific
List; provides some additional methods that use polymorphism to avoid (un)boxing. |
| ObjectListIterator<K> |
A type-specific bidirectional iterator that is also a
ListIterator. |
| 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 |
|---|---|
| AbstractObjectBidirectionalIterator<K> |
An abstract class facilitating the creation of type-specific bidirectional iterators.
|
| AbstractObjectCollection<K> |
An abstract class providing basic methods for collections implementing a type-specific interface.
|
| AbstractObjectIterator<K> |
An abstract class facilitating the creation of type-specific iterators.
|
| AbstractObjectList<K> |
An abstract class providing basic methods for lists implementing a type-specific list interface.
|
| AbstractObjectList.ObjectSubList<K> | |
| AbstractObjectListIterator<K> |
An abstract class facilitating the creation of type-specific list iterators.
|
| 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.
|
| ObjectArrayList<K> |
A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
|
| ObjectArrays |
A class providing static methods and objects that do useful things with type-specific arrays.
|
| ObjectArrays.ForkJoinQuickSort<K> | |
| ObjectArrays.ForkJoinQuickSort2<K> | |
| ObjectArrays.ForkJoinQuickSortComp<K> | |
| ObjectArrays.ForkJoinQuickSortIndirect<K> | |
| ObjectArraySet<K> |
A simple, brute-force implementation of a set based on a backing array.
|
| ObjectCollections |
A class providing static methods and objects that do useful things with type-specific collections.
|
| ObjectCollections.EmptyCollection<K> |
An immutable class representing an empty type-specific collection.
|
| ObjectCollections.IterableCollection<K> |
A collection wrapper class for iterables.
|
| ObjectCollections.SynchronizedCollection<K> |
A synchronized wrapper class for collections.
|
| ObjectCollections.UnmodifiableCollection<K> |
An unmodifiable wrapper class for collections.
|
| ObjectIterators |
A class providing static methods and objects that do useful things with type-specific iterators.
|
| ObjectIterators.EmptyIterator<K> |
A class returning no elements and a type-specific iterator interface.
|
| ObjectIterators.UnmodifiableBidirectionalIterator<K> |
An unmodifiable wrapper class for bidirectional iterators.
|
| ObjectIterators.UnmodifiableIterator<K> |
An unmodifiable wrapper class for iterators.
|
| ObjectIterators.UnmodifiableListIterator<K> |
An unmodifiable wrapper class for list iterators.
|
| 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.
|
Copyright © 2016. All rights reserved.