I have a class with a list of lists field as below:
public class MyClass{
private List<List<String>>
}
how to define it in a proto file?
Combining those two gives us:
message ListOfListsOfStrings {
repeated ListOfStrings listOfStrings=1;
}
message ListOfStrings {
repeated string strings=1;
}
You can then use ListOfListsOfStrings message in your proto were appropriate.