Somehow my old question was closed, so I open a new one:
I am using Java Generics to implement a generic bidirectional Hash Map out of an SQL Query. It should be abl
You can use the following annotation to make the compiler not output those warnings:
@SuppressWarnings("unchecked")
See this related question which deals with the same issue. The answer there will explain everything you need to know.