Java List Sort getSortedStringList(List pathList)

Here you can find the source of getSortedStringList(List pathList)

Description

get Sorted String List

License

Apache License

Declaration

static List<String> getSortedStringList(List pathList) 

Method Source Code


//package com.java2s;
/*/*from   w w w  .  ja  va 2  s .  c om*/
 * Copyright 2007-2008 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.*;

public class Main {
    static List<String> getSortedStringList(List pathList) {
        List<String> sortedList = new ArrayList<String>();
        for (Object path : pathList) {
            sortedList.add(path.toString());
        }
        Collections.sort(sortedList);
        return sortedList;
    }
}

Related

  1. getOverlapCount(List list1, List list2, boolean sorted)
  2. getSortedFilesList(String filesList)
  3. getSortedKetList(HashMap numKnownGenesHashMap)
  4. getSortedList(Collection collection)
  5. getSortedList(Set items)
  6. getZipfPlotData(List sortedCount)
  7. interpolateLinearlyQuantile(List sortedDataAscendingOrder, Double p)
  8. isEqualList(final List list1, final List list2, Comparator c, boolean sortList)
  9. isSorted(Iterable list)