If you have a lot of commands, you shouldn't put them all in the main class.
Make a new class and have it implement CommandExecutor
Add the following to the class:
 @Override 
 public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
 }
In your...