5.8.Naming a Method
Although a method name may be any legal identifier, code conventions regulate the use of method names. By convention, method names should consist of a verb in lowercase or a multi-word name that commences with a verb in lowercase and is followed by adjectives, nouns, etc. The first letter of each of the second and subsequent syllables in multi-word names should be capitalized. The following are a few examples:
run runFast getBackground getFinalData compareTo setX isEmpty
Typically, a method is assigned a distinctive name within its class. However, method overloading might end in a method having the same name as other methods.