Converting List to Set:
List list = Arrays.asList(1, 2, 3); Set set = new HashSet(list);
Converting Set to List:
Set set = Sets.newHashSet(1, 2, 3); List list = new ArrayList(set);