Is there any PMD or Checkstyle rule available that could help me to prohibit usage of some certain classes in Java code?
In my case I'd like to ban all of the following in all possible contexts:
org.apache.commons.lang3.CharEncoding
org.apache.commons.lang.CharEncoding
org.apache.commons.codec.CharEncoding
I've found IllegalImport check, but it's about packages, not particular classes.