dave08
09/06/2018, 4:37 PMflatMapValues
to a map? All that currently exists is mapValues
... My use case is a json hierarchy that needs to be flattened into a Map<String, Map<String, JsonElement>>
. It's something like { "level1": { "ns": { "s1": "", "s2": "" } } }
, and needs to be [level1 = [ ns.s1 = "", ns.s2 = ""]]
. And it's using Gson's JsonObject, etc...Shawn
09/06/2018, 4:53 PMShawn
09/06/2018, 4:53 PMdave08
09/06/2018, 4:55 PM