Does there exist a project or product that implements static analysis rules specifically designed to enforce the advice given in "Effective Java," 2nd ed., Bloch?
Many people agree that "Effective Java" is a very good book. The ability to scan code for opportunities to apply the "Effective Java" advice would most likely be seen as valuable.
Now, some of the advice from the book is already covered by existing rules in tools like PMD. Also, some of the advice is probably beyond the recognition powers of static analyzers.
Maybe I'm just looking for an index into existing tools:
- PMD rule
foo→ EJ ItemX - FindBugs visitor
bar→ EJ ItemY