Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checkstyle - methods order by modifier

Is it possible add to checkstyle rule to have ordered methods in class by modifier. I mean public methods on the begining and private methods in the end ?

like image 543
Kamil W Avatar asked Mar 27 '26 16:03

Kamil W


1 Answers

MethodsOrderCheck do this job.

Check the documentation

FYI: there is some logical issue about it.

like image 150
Levente Takács Avatar answered Mar 31 '26 06:03

Levente Takács