Is it possible to get a list of methods of the class from command line?
In Eclipse or Intellij IDEA one usually hits ctrl + space for autocompletion menu. It's cool, but I wish to get something alike from bash.
E.g. I have a class that extends a class (or classes if the parent also extends a class) and implements a couple of interfaces - so I need to know which methods I'm able to use.
P.S. I use vim 'cause I have memory limitations to use entire IDE.
Class.forName(args[0]).getMethods()and display them.