There is no static keyword in Kotlin.
static
What is the best way to represent a static Java method in Kotlin?
All static member and function should be inside companion block
companion object { @JvmStatic fun main(args: Array) { } fun staticMethod() { } }