Accessing Kotlin extension functions from Java

Is it possible to access extension functions from Java code? I defined the extension function in a Kotlin file. package com.test.extensions import com.test.model.MyModel /** * */ public fun MyModel.bar(): Int { return this.name.length() } Where MyModel is a (generated) java class. Now, I wanted to access it in my normal java code: MyModel model = … Read more