11) Method names should start with small letters.
22) Method names are usually verbs
33) If method contains multiple words, every inner word should start with
4uppercase letter.
5Ex : toString()
64) Method name must be combination of verb and noun
7Ex : getCarName(),getCarNumber()
1It is recommended highly to follow java coding standards.
2Classnames should start with uppercase letter. Classnames names should be nouns.
3If Class name is of multiple words then the first letter of inner word must be
4capital letter.
5Ex : Employee, EmployeeDetails, ArrayList, TreeSet, HashSet
11) Interface should start with uppercase letters
22) Interfaces names should be adjectives
3Example : Runnable, Serializable, Marker, Cloneable