In Java, we use C-style naming for static final fields, for example MY_CONSTANT_VALUE. In Kotlin, I noticed that the enum values in the standard library also use this naming style. In general, is it "Kotlin-style" to name vals in companion objects in the same way to make them similar to Java? Maybe only for immutable objects or for values that are eligible for a const modifier?