If you don't know why you shouldn't be writing plugins. Oracle's tutorials go over Java naming conventions.
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/index.html
There is no reason to manually upcast.Just put this in the on enable:
Bukkit.getServer().getPluginManager().registerEvents((Listener) this, this);
That fixed it for me
