java coding standards for interfaces

Solutions on MaxInterview for java coding standards for interfaces by the best coders in the world

showing results for - "java coding standards for interfaces"
Art
22 Jan 2021
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
Marwa
23 Mar 2016
11) Interface should start with uppercase letters
22) Interfaces names should be adjectives
3Example : Runnable, Serializable, Marker, Cloneable