Package org.apache.felix.framework.util
Class StringMap
Simple utility class that creates a map for string-based keys.
 This map can be set to use case-sensitive or case-insensitive
 comparison when searching for the key.  Any keys put into this
 map will be converted to a String using the
 toString() method, since it is only intended to
 compare strings.
- 
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K, V>  - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidclear()booleancontainsKey(Object arg0) booleancontainsValue(Object arg0) entrySet()booleanisEmpty()voidintsize()Methods inherited from class java.util.AbstractMap
clone, equals, hashCode, keySet, toString, valuesMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll 
- 
Constructor Details
- 
StringMap
public StringMap() - 
StringMap
 
 - 
 - 
Method Details
- 
size
public int size() - 
isEmpty
public boolean isEmpty() - 
containsKey
- Specified by:
 containsKeyin interfaceMap<String,Object> - Overrides:
 containsKeyin classAbstractMap<String,Object> 
 - 
containsValue
- Specified by:
 containsValuein interfaceMap<String,Object> - Overrides:
 containsValuein classAbstractMap<String,Object> 
 - 
get
 - 
put
 - 
putAll
 - 
remove
 - 
clear
public void clear() - 
entrySet
 
 -