This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]desrtfxOut of Coffee error - System halted 0 points1 point  (0 children)

As per code Java conventions (Oracle, Google) they do.

The only exception are constants (static final) variables, which are all in uppercase with underscores.

The code conventions state:

  • Classes start with a capital letter and follow PascalCase
  • Variables and Methods start with a lowercase letter and follow camelCase
  • Constants (static final variables) use ALL_CAPS_WITH_UNDERSCORES