cn.dreampie.common.entity
类 CaseInsensitiveMap<V>

java.lang.Object
  继承者 java.util.AbstractMap<K,V>
      继承者 java.util.TreeMap<String,V>
          继承者 cn.dreampie.common.entity.CaseInsensitiveMap<V>
所有已实现的接口:
Serializable, Cloneable, Map<String,V>, NavigableMap<String,V>, SortedMap<String,V>

public class CaseInsensitiveMap<V>
extends TreeMap<String,V>

A case insensitive map for java.lang.String keys. The current implementation is based on TreeMap, so it does not accept null keys and keeps entries ordered by case insensitive alphabetical order of keys.

另请参见:
序列化表格

嵌套类摘要
 
从类 java.util.AbstractMap 继承的嵌套类/接口
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
 
构造方法摘要
CaseInsensitiveMap()
           
 
方法摘要
 
从类 java.util.TreeMap 继承的方法
ceilingEntry, ceilingKey, clear, clone, comparator, containsKey, containsValue, descendingKeySet, descendingMap, entrySet, firstEntry, firstKey, floorEntry, floorKey, get, headMap, headMap, higherEntry, higherKey, keySet, lastEntry, lastKey, lowerEntry, lowerKey, navigableKeySet, pollFirstEntry, pollLastEntry, put, putAll, remove, size, subMap, subMap, tailMap, tailMap, values
 
从类 java.util.AbstractMap 继承的方法
equals, hashCode, isEmpty, toString
 
从类 java.lang.Object 继承的方法
finalize, getClass, notify, notifyAll, wait, wait, wait
 
从接口 java.util.Map 继承的方法
equals, hashCode, isEmpty
 

构造方法详细信息

CaseInsensitiveMap

public CaseInsensitiveMap()


Copyright © 2015. All rights reserved.