So I have these 3 linesint id1 = get("id", Integer.class); //gets the correct value//long id2 = get("id", Long.class); //code won't compileLong id3 = get("id", Long.class); // id3 is nullWhen I debug my code (Eclipse user here), id1 has the correct value while id3 is null.Any ideas on how to get it ...