Java SortedMap Usage find(SortedMap map, String baseName)

Here you can find the source of find(SortedMap map, String baseName)

Description

find

License

Open Source License

Declaration

static <V> SortedMap<String, V> find(SortedMap<String, V> map,
            String baseName) 

Method Source Code

//package com.java2s;

import java.util.SortedMap;

public class Main {
    static <V> SortedMap<String, V> find(SortedMap<String, V> map,
            String baseName) {//  w  w  w  .  j  av a  2  s.  c o m
        return map.subMap(baseName, baseName.concat("\uFFFF"));
    }
}

Related

  1. computeByteSizeM( SortedMap byteSizeByName)
  2. computePathCauselessLms( List>> depCausesByNameList)
  3. filterPrefix( SortedMap baseMap, String prefix)
  4. firstElement(Collection c)
  5. firstElement(Collection c)
  6. generatePropertiesFilter(SortedMap propertiesMap)
  7. getAll(SortedMap map)