What is the syntax for List<Student>.class
in Java android? This is for getting the type of list of students. Am getting a json string with List of students and that to be parsed to the concrete class.
objectMapper.readValue(response, List<Student>.class);