A B C D E F G H I K L M N O P Q R S T U V W X Y

O

Objects - Class in goldman
The Objects abstract class holds a variety of utilities to support many data structures.
Objects() - Constructor for class goldman.Objects
 
Objects.DefaultEquivalenceTester<E> - Class in goldman
If no comparator is provided in the constructor for a data structure that depends on the elements being comparable, the following default equivalence tester is used.
Objects.DefaultEquivalenceTester() - Constructor for class goldman.Objects.DefaultEquivalenceTester
 
OpenAddressing<E> - Class in goldman.collection.set
This data structure should also be considered when only a small fraction of the elements in the universe will be stored in the collection.
OpenAddressing(int, double, Comparator<? super E>, Hasher<E>) - Constructor for class goldman.collection.set.OpenAddressing
Creates a hash table with the specified capacity (plus one to handle null values), and with the given comparator and hasher
OpenAddressing(int, double, Comparator<? super E>) - Constructor for class goldman.collection.set.OpenAddressing
Creates a hash table with the specified capacity (plus one to handle null values), and with the given comparator and default open addressing hasher
OpenAddressing() - Constructor for class goldman.collection.set.OpenAddressing
Creates a new set with a default initial capacity, load, equivalence tester, and hasher.
OpenAddressing(Comparator<? super E>) - Constructor for class goldman.collection.set.OpenAddressing
Creates a new set with a default initial capacity, load, and hasher.
OpenAddressing(int) - Constructor for class goldman.collection.set.OpenAddressing
Creates a new set with the given capacity, and the default load, equivalence tester, and hasher.
OpenAddressing(int, Comparator<? super E>) - Constructor for class goldman.collection.set.OpenAddressing
Creates a new set with the provided capacity and equivalence tester, using the default load and hasher
OpenAddressing(int, double) - Constructor for class goldman.collection.set.OpenAddressing
Creates a new set with the provided capacity and load, using the default equivalence tester and hasher.
OpenAddressing.DefaultOpenAddressingHasher<E> - Class in goldman.collection.set
The default open addressing hasher provides a default hasher for open addressing that hashes null to slot 0, and uses the element's hash code for all other elements.
OpenAddressing.DefaultOpenAddressingHasher() - Constructor for class goldman.collection.set.OpenAddressing.DefaultOpenAddressingHasher
 
OpenAddressingMapping<K,V> - Class in goldman.collection.tagged.set
A tagged version of a open addressing.
OpenAddressingMapping(int, double, Comparator<? super K>) - Constructor for class goldman.collection.tagged.set.OpenAddressingMapping
 
OpenAddressingMapping(int) - Constructor for class goldman.collection.tagged.set.OpenAddressingMapping
 
OpenAddressingMapping() - Constructor for class goldman.collection.tagged.set.OpenAddressingMapping
 
OpenAddressingMapping(Comparator<? super K>) - Constructor for class goldman.collection.tagged.set.OpenAddressingMapping
 
OrderedCollection<E> - Interface in goldman.collection.ordered
An ordered collection is an untagged algorithmically positioned collection of comparable elements that may contain duplicates.

A B C D E F G H I K L M N O P Q R S T U V W X Y