When given an object and a name it lists the docs for that method (or methods).
For example:
nM> query nxm.sys.lib.StringUtil padLeft
ClassName -> nxm.sys.lib.StringUtil
Constructors - all declared and inherited PUBLIC (0) ->
Methods - all declared and inherited PUBLIC (2) ->
...
public static final java.lang.String padLeft(java.lang.String str, int
newlen, char padChar)
Return a new string of padded out to a pre-determined length by adding
characters to the left.
Examples: padLeft("cat", 5, '.') --> "..cat"
Parameters:
str - The string to pad.
newlen - The length to pad the string out to.
padChar - The character to pad the string with.
Returns:
The string padded on the left to match the specified length.
See Also:
padRight(String,int,char), padBoth(String,int,char)
Fields - all declared and inherited PUBLIC (including INTERFACE) (0) ->