How to unwrap object into a list when deserializing
I’m trying to create json that looks like this "entries" : [ { "name" : <name>, "dataPoint" : [ [long, double], [long, double], ] } ] Each data point is a 2-element array of a long and a double If I have this public class Entry { private String name; private List<DataPoint> dataPoint; <constructor and… Read More How to unwrap object into a list when deserializing