All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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() {
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy