Java SortedMap Usage unwrapList(SortedMap sortedMap, K fromKey)

Here you can find the source of unwrapList(SortedMap sortedMap, K fromKey)

Description

unwrap List

License

Open Source License

Declaration

public static <K, V> List<V> unwrapList(SortedMap<K, V> sortedMap, K fromKey) 

Method Source Code

//package com.java2s;
/**//from  w  w w.j  av a2 s.  c  o  m
 * Copyright (C) 2010 Cubeia Ltd <info@cubeia.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.ArrayList;

import java.util.List;
import java.util.SortedMap;

public class Main {
    public static <K, V> List<V> unwrapList(SortedMap<K, V> sortedMap, K fromKey) {
        List<V> list = new ArrayList<V>();

        list.addAll(sortedMap.tailMap(fromKey).values());
        list.addAll(sortedMap.headMap(fromKey).values());

        return list;
    }
}

Related

  1. pruneStartAndEndKeys(SortedMap setOfStartKeyByteArray, List listOfStartKeyByteArray)
  2. putWeightToBin(SortedMap hist, double bin, double weight)
  3. removeSetFromBulkLm(Set toRemoveSet, List> byteSizeByNameList, String exceptRegex)
  4. sortedMapOf(final Object obj, final Class keyCastTo, final Class valueCastTo)
  5. submapWithPrefix(SortedMap map, String prefix)
  6. unwrapList(SortedMap sortedMap, K fromKey)