There is no static keyword in Kotlin.
static
What is the best way to represent a static Java method in Kotlin?
This also worked for me
object Bell { @JvmStatic fun ring() { } }
from Kotlin
Bell.ring()
from Java