Naming Conventions

suggest change

Package names

Class, Interface and Enum Names

Method Names

Method names should typically be verbs or other descriptions of actions

Variables

Variable names should be in mixed case with the first letter in lower case

Type Variables

For simple cases where there are few type variables involved use a single upper case letter.

Constants

Constants (static final fields whose content is immutable, by language rules or by convention) should be named with all capital letters and underscore (\_) to separate words.

Other guidelines on naming

Source: Java Style Guidelines from Oracle

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents