Hello: Need some help on how to convert an *ArrayList<List<Object>>* into 
*List<RowData>*

I am using Google Spreadsheet API V4 on Java.

*Here is my Array List:*

ArrayList<List<Object>> rowsData = oCoreGoogle.ReadExcel(sheetname);



*And, here is the RowData that i want to write to the spreadsheet.*
I am lost into finding if there is a native way to quickly convert ArrayList
<List<Object>> into 
List<RowData>.

List<RowData> rowData = new ArrayList<RowData>();
        
requests.add(new Request()
                .setAppendCells(new AppendCellsRequest()
                        .setSheetId(1929014238)
                        .setRows(rowData)
                        .setFields(
"userEnteredValue,userEnteredFormat.numberFormat")
                        )



-- 
You received this message because you are subscribed to the Google Groups 
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to