I understand that the @SuppressWarnings("unchecked") annotation can be used to suppress compiler warnings when generics aren't being used precisely as they're meant to be. And I understand that, from a purist perspective, one should almost never use these annotations and should just refactor the code so that there are no warnings.
But that got me thinking.
Are there any rules of thumb out there that dictate when it is safe to use these annotations (as opposed to "unsafe" uses that will result in debugging hell)? If so, what are they, and in what types of situations do they occur?
Thanks in advance!
