I would like to ask what is the difference between
ArrayListMultimap.create()
And
RowData = new ArrayList().
I know the first one is used for Multimaps and the latter is used for lists but I once used the ArrayListMultimap.create() in a code and it can return values like this:
{[Color, Fruit], [Pink,Orange]}
Whereas the latter returns:
[Color,Fruit,Pink,Orange]
I was expecting that RowData = new ArrayList() can return values the way ArrayListMultimap.create() does....
Please enlighten me.