class HashTable
public class HashTable<K, V> implements HashTableIdea<K, V>
//No-args constructor //Returns new HashTable with initial capacity of 16 //max load ratio is coder's choice static newEmpty() //Constructor with two params (returns HashTable per the params) static fromCapacityMaxLoadRatio(initCapacity, maxLoadRatio)
//No-args constructor //Returns new HashTable with initial capacity of 16 //max load ratio is coder's choice public static <T, U> HashTable<T, U> newEmpty() //Constructor with two params (returns HashTable per the params) public static HashTable fromCapacityMaxLoadRatio(int initCapacity, double maxLoadRatio)