Re: Gogo commands: return result or print?

2019-01-18 Thread Todor Boev
But then I lose the advantage of using a generic type other commands/people can understand. E.g. I am now at the stage where I want a nice format for a Map>. First of all it is generic so I have to make up a type. Once I do that it is less usable... Maybe make a "ConfigurationMap extends Map>"

Re: Gogo commands: return result or print?

2019-01-18 Thread Raymond Auge
On Fri, Jan 18, 2019 at 10:39 AM Todor Boev wrote: > Ok, but the formatter doesn't always do what I want. > > Right now I return an array of objects and I want the Converter.INSPECT > level of detail when printing each item in the array. > The formatter uses Converter.INSPECT level for the

Re: Gogo commands: return result or print?

2019-01-18 Thread Todor Boev
Ok, but the formatter doesn't always do what I want. Right now I return an array of objects and I want the Converter.INSPECT level of detail when printing each item in the array. The formatter uses Converter.INSPECT level for the array, but Converter.PART or Converter.LINE for each item. So what

Re: Gogo commands: return result or print?

2019-01-18 Thread Raymond Auge
return! When you print you go around the formatters engine and you cannot pipe as nicely. The shell API is designed for returning results from command methods. These can be complex objects which are much better for piping between commands than strings on sysout. The formatter engine only kicks