Skip to content

Latest commit

 

History

History
executable file
·
12 lines (10 loc) · 179 Bytes

interface-naming.md

File metadata and controls

executable file
·
12 lines (10 loc) · 179 Bytes

Java Naming Convention > Interface Naming

PascalCase

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