Skip to content

Latest commit

 

History

History
executable file
·
11 lines (9 loc) · 180 Bytes

interface-naming.md

File metadata and controls

executable file
·
11 lines (9 loc) · 180 Bytes

Java Naming Convention > Interface Naming

PascalCase

  • Begin with an uppercase letter
  • Avoid acronyms and abbreviations
interface Bookable {  
    ...
}