I just want to know the "absolute" name for the type which is represented by an ArrayList of String (ArrayList<String>
).
For exemple, for Integer, the complete name is java.lang.Integer
, so what's the equivalent for the ArrayList<String>
?
Thanks