The following code in kotlin:
Any().javaClass
Has value of java.lang.Object. Does that mean Any and Object<
java.lang.Object
Any
Object<
In fact, there is no java.lang.Object in aspect of Kotlin lang, so you certainly cannot say Any is Object. You can only say Any takes the place of Object in Kotlin.
Object