I'm trying to leverage some existing GWT java code that takes a parameter which is a java.util.List of java.util.Maps and updates it with new values. The list of maps I want to pass it is already stored in as the RecordList for a ListGrid via List.setData().
What is the most efficient way to transform that RecordList into a simple List of Maps and then back again after the method updates it? Or is there a way to cast the RecordList as a List of Maps since that is essentially what it is already.
What is the most efficient way to transform that RecordList into a simple List of Maps and then back again after the method updates it? Or is there a way to cast the RecordList as a List of Maps since that is essentially what it is already.
Comment