There is no static keyword in Kotlin.
static
What is the best way to represent a static Java method in Kotlin?
For Java:
public class Constants { public static final long MAX_CLICK_INTERVAL = 1000;}
Equivalent Kotlin code:
object Constants { const val MAX_CLICK_INTERVAL: Long = 1000}
So for the equivalent of Java static methods is object class in Kotlin.