| org.apache.tapestry.ioc.util.CaseInsensitiveMap
CaseInsensitiveMap | public class CaseInsensitiveMap extends AbstractMap implements Serializable(Code) | | An mapped collection where the keys are always strings and access to values is case-insensitive.
The case of keys in the map is maintained, but on any access to a key (directly or
indirectly), all key comparisons are performed in a case-insensitive manner. The map
implementation is intended to support a reasonably finite number (dozens or hundreds, not
thousands or millions of key/value pairs. Unlike HashMap, it is based on a sorted list of entries
rather than hash bucket. It is also geared towards a largely static map, one that is created and
then used without modification.
< Parameters: V - >the type of value stored |
CaseInsensitiveMap | public CaseInsensitiveMap()(Code) | | |
CaseInsensitiveMap | public CaseInsensitiveMap(int size)(Code) | | |
CaseInsensitiveMap | public CaseInsensitiveMap(Map<String, ? extends V> map)(Code) | | |
caseInsenitiveHashCode | static int caseInsenitiveHashCode(String input)(Code) | | |
clear | public void clear()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
|
|