Java List Sort sortList(List items)

Here you can find the source of sortList(List items)

Description

sort List

License

Open Source License

Declaration

public static void sortList(List<String> items) 

Method Source Code

//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*/
}

Related

  1. sortItems(List items, String putOnTop)
  2. sortList(ArrayList list)
  3. sortList(Collection list)
  4. sortList(java.util.List types)
  5. sortList(List list)
  6. sortList(List list, boolean asc)
  7. sortListAlphabetically(List list)
  8. sortListByMapKey(List> list)
  9. sortListEntry(List firstList, List secondList)