resources.report.rules.pmd.MethodNamingConventions.html Maven / Gradle / Ivy
MethodNamingConventions
MethodNamingConventions
Method names should always begin with a lower case character, and should not contain underscores.
This rule is defined by the following Java class: net.sourceforge.pmd.lang.java.rule.naming.MethodNamingConventionsRule
Example(s):
public class Foo {
public void fooStuff() {
}
}