I've got two lists:
List<String> names;
List<Integer> ages;
So, I would like to transform these lists in unique List of Person, Person class is like this:
public class Person {
private String name;
private Integer age;
}
How I do it using Guava or another way?