My Java class do a mysql query and it's result is stored in result list.
In the attached image you can see the structure data of one element of the list result.
My question is: how can I parse each element? How can I access to these values?
I don't want to use Object type.
String queryString = "SELECT COUNT(*),tabid FROM occurrencesnames group by tabid";
Query query = session.createSQLQuery(queryString);
List result = query.list();
Thank you so much.