Kotlin - equivalence to SomeClass.class for objects?

Viewed 461

I'm trying to statically get an object's name (For logging uses)

The equivalence for:

public class SomeClass
{
    private static final String TAG = SomeClass.class.getSimpleName()
}

In Kotlin:

object SomeObject
{
   private const val TAG = ?
}
2 Answers
Related