As Khal mentioned above, it's great that you're trying to learn about some of the cool features java provides, but what you're trying to do is a very strange way of using objects! You've made a bunch of different constructors, but the function of classes should probably be contained in the body of the class, not the constructor. I would suggest saving the constructor for initialising variables, setting values, or anything else you need to do to 'construct' an instance of the class. (or you could use an initialisation block for variables :p).
I would suggest that you try a project where the concept of object orientation fits well with the script, for example an AIO or multi-mode script of some sort.