Лучший способ - использовать List
в пределах List
:
List<List<String>> listWithList = new ArrayList<List<String>>();
Чтобы получить child List
от parent List
, вам необходимо позвонить, например, 0
для первого child List
:
List<String> anotherList = new ArrayList<String>();
anotherList = listWithList.get(0); // get the first complete List
Чтобы получить String
от ребенка List
, вам необходимо позвонить:
String someText = anotherList.get(0); // get the first String
или непосредственно из List
в пределах List
:
String moreText = listWithList.get(0).get(0); // get the first String from the first List