Re: convert Json to Tuple

2016-04-25 Thread Alexander Smirnov
Thanks Timur! I should have mentioned, I need it for Java On Mon, Apr 25, 2016 at 10:13 PM Timur Fayruzov wrote: > Normally, Json4s or Jackson+scala plugin work well for json to scala data > structure conversions. However, I would not expect they support a special > case for tuples, since JSON

Re: convert Json to Tuple

2016-04-25 Thread Timur Fayruzov
Normally, Json4s or Jackson+scala plugin work well for json to scala data structure conversions. However, I would not expect they support a special case for tuples, since JSON key-value fields would normally convert to case classes and JSON arrays are converted to, well, arrays. That's being said,