Using Java's Reflection API, you can use _ to get the name of a class and _ to retrieve an array of its methods.
this.getClass().getSimpleName(); this.getClass().getDeclaredMethods()
this.getName(); this.getMethods()
Reflection.getClass(this).getName(); Reflection.getClass(this).getMethods()
Reflection.getName(this); Reflection.getMethods(this)