Parent issue: #19604
Description
Add Checkstyle checks for all rules under §4.3 - Method Names of the OpenJDK Java Style Guidelines v6.
Method Names
Method names should typically be verbs or other descriptions of actions.
Use mixed case with the first letter in lower case.
Rules covered
From §4.3 - Method Names:
- Method name must start with a lowercase letter.
- Method name must not contain _.
Checks to add to openjdk_checks.xml
TreeWalker-level:
<module name="MethodName">
<property name="format" value="^[a-z][^_]*$"/>
</module>
Progress tracker
| Check |
Rule |
Status |
| MethodName |
starts with lowercase and has no _ |
|
Parent issue: #19604
Description
Add Checkstyle checks for all rules under §4.3 - Method Names of the OpenJDK Java Style Guidelines v6.
Rules covered
From §4.3 - Method Names:
Checks to add to openjdk_checks.xml
TreeWalker-level:
Progress tracker