So I have this general purpose HashTable class I\'m developing, and I want to use it generically for any number of incoming types, and I want to also initialize the internal
Also, you can suppress the warning on a method by method basis using annotations:
@SuppressWarnings("unchecked") public HashTable(int initialSize) { ... }