I was reading the documentation of TinyDB -:
TinyDB tinydb = new TinyDB(this);
ArrayList questionsStatusArrayList = new ArrayList<QuestionsStatus>();
tinydb.putListObject("MyQestionsData", questionsStatusArrayList);
for getting back the list they are using -:
public ArrayList<Object> getListObject(String key, Class<?> mClass)
What is -: Class mClass . What is expected there?