Another aspect to consider is whether you are using another style or standard that conflicts in some way with the tool. While these tools definitely have value, they can become a burden in these cases.
For example, if doing Java GUI development using Netbeans, you'll find that a lot of the auto-generated code may cause a warning in PMD for example (I don't have examples off hand).
If that's the case, and your choice is to either go with the way the IDE does things or the static analysis tool, if you chose the latter it will be a massive pain, for not much gain, as these types of warnings are usually either wrong or worthless.
You can then take time to configure the tools to ignore certain warnings, but there is inedequate configuration options, e.g. you can usually only either use a rule or not, but not define rules for when they should apply.
So to sum things up, while static analysis tools have value, in some cases the drawbacks may outweigh the benefits. This could change if the tools become more customizable, and more intelligent with their rules.