enum constant as key in hashtable
Hi,
when i create a class i must override the equals and hashCode methods, in order to be able to place objects of this class in a hashtable.
What do i need to do for placing enum constants as keys in a hashtable? equals is declared final, so i cannot override it. Do i need to override the hashCode only?
Thanks

