naming method in java code example
Example: naming conventions methods java
Methods should be verbs, in mixed case with the first letter lowercase,
with the first letter of each internal word capitalized.
Example:
run();
runFast();
getBackground();