So I have a function that looks like this:
@SuppressWarnings("unchecked")
public static <E> Set<E> getSetOfClass(Query q,Class<E> clazz) {
return new LinkedHashSet<E>( q.getResultList() );
}
What I believe this is doing is taking a javax.persistence.Query and returning its result set as a generic Set<Class>.
This seems like a great solution, but first off, is it actually doing what I think it is, and is this the best way to achieve that? I find it odd that I never reference my clazz param, but it does seem to do what I want it to.
Secondly if this is all correct and sensible, what errors can this throw? I'd imagine if I give it an incorrect class this function wouldn't work, though I'm not sure at all on that.
If I do something like:
Query q = em.createQuery("FROM Element");
Set<Fish> s = MyUtil.getSetOfClass( q, Fish.class);
And if Fish is not a superclass of Element then what happens? Should I assume that this function will always be used correctly or should I be doing so error handling? What are people recommendations of a best practice approach?
Regards,
Glen x
clazz, actually, you don't use you class param because you needn't pass it. You could just omit that param and call the method as:MyUtil.<Fish>getSetOfClass(q), but it's a weirder syntax if you're not used to it. I'd recommend instead to use theclazzparameter as recommended by @Andreas_D. – Blaisorblade Feb 13 at 15:41