Here you can find the source of getSortedList(Set
public static List<String> getSortedList(Set<String> items)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static List<String> getSortedList(Set<String> items) { List<String> l = new ArrayList<>(items); Collections.sort(l);//www . j a v a 2s. com return l; } }