So, I'm sure this is a question about the Nob, but while reading a post in Android programming, I came across a line like this:
List<Map<String, String>> groupData = new ArrayList<Map<String, String>>();
My question is, what does it mean <Map<String, String>>? I tried Googling, but all I get is lists of Java statements.
source
share