Something about the naming convention for properties in Kotlin, I know this is not for methods. But it is connected:
From the book Kotlin in action (Dmitry Dzhemerov and Svetlana Isakova) - section 2.2.1 Properties :
In Kotlin, properties are a first-class language feature that completely replaces fields and access methods.
Listing 2.5. Declaring a mutable property in a class:
class Person {
val name: String,
var isMarried: Boolean
}
Kotlins Java getter, GetName. : , is, getter , set. , Java, isMarried().