Here you can find the source of sortList(List
public static void sortList(List<String> items)
//package com.java2s; //License from project: Open Source License import java.util.Collections; import java.util.List; public class Main { public static void sortList(List<String> items) { Collections.sort(items, String.CASE_INSENSITIVE_ORDER); }/*w w w . j ava 2s . c om*/ }