RETOURN NOM DE CLASSE Java

Try using this this.getClass().getCanonicalName() or this.getClass().getSimpleName().
 If it's an anonymous class, use this.getClass().getSuperclass().getName()
coder