Package org.apache.myfaces.util.lang
Class AbstractThreadSafeAttributeMap<V>
- java.lang.Object
- 
- java.util.AbstractMap<String,V>
- 
- org.apache.myfaces.util.lang.AbstractThreadSafeAttributeMap<V>
 
 
- 
- Direct Known Subclasses:
- ApplicationMap,- SessionMap
 
 public abstract class AbstractThreadSafeAttributeMap<V> extends AbstractMap<String,V> Helper Map implementation for use with different Attribute Maps.- Version:
- $Revision$ $Date$
- Author:
- Anton Koinov (latest modification by $Author$)
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class java.util.AbstractMapAbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
 
- 
 - 
Constructor SummaryConstructors Constructor Description AbstractThreadSafeAttributeMap()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object findValue)Set<Map.Entry<String,V>>entrySet()Vget(Object key)protected abstract VgetAttribute(String key)protected abstract Enumeration<String>getAttributeNames()booleanisEmpty()Set<String>keySet()Vput(String key, V value)voidputAll(Map<? extends String,? extends V> t)Vremove(Object key)protected abstract voidremoveAttribute(String key)protected abstract voidsetAttribute(String key, V value)intsize()Collection<V>values()- 
Methods inherited from class java.util.AbstractMapclone, equals, hashCode, toString
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
 
- 
 
- 
- 
- 
Method Detail- 
clearpublic void clear() 
 - 
containsKeypublic final boolean containsKey(Object key) - Specified by:
- containsKeyin interface- Map<String,V>
- Overrides:
- containsKeyin class- AbstractMap<String,V>
 
 - 
containsValuepublic boolean containsValue(Object findValue) - Specified by:
- containsValuein interface- Map<String,V>
- Overrides:
- containsValuein class- AbstractMap<String,V>
 
 - 
isEmptypublic boolean isEmpty() 
 - 
sizepublic int size() 
 - 
valuespublic Collection<V> values() 
 - 
removeAttributeprotected abstract void removeAttribute(String key) 
 - 
getAttributeNamesprotected abstract Enumeration<String> getAttributeNames() 
 
- 
 
-