Class CompositeComponentBeanInfo.PropertyDescriptorMap
- java.lang.Object
- 
- org.apache.myfaces.view.facelets.tag.composite.CompositeComponentBeanInfo.PropertyDescriptorMap
 
- 
- All Implemented Interfaces:
- Map<String,PropertyDescriptor>
 - Enclosing class:
- CompositeComponentBeanInfo
 
 public class CompositeComponentBeanInfo.PropertyDescriptorMap extends Object implements Map<String,PropertyDescriptor> Read only map for fast access. It works as an indirection over the real list.
- 
- 
Constructor SummaryConstructors Constructor Description PropertyDescriptorMap()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String,PropertyDescriptor>>entrySet()PropertyDescriptorget(Object key)booleanisEmpty()Set<String>keySet()PropertyDescriptorput(String key, PropertyDescriptor value)voidputAll(Map<? extends String,? extends PropertyDescriptor> m)PropertyDescriptorremove(Object key)intsize()Collection<PropertyDescriptor>values()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.util.Mapcompute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
 
- 
 
- 
- 
- 
Method Detail- 
sizepublic int size() - Specified by:
- sizein interface- Map<String,PropertyDescriptor>
 
 - 
isEmptypublic boolean isEmpty() - Specified by:
- isEmptyin interface- Map<String,PropertyDescriptor>
 
 - 
containsKeypublic boolean containsKey(Object key) - Specified by:
- containsKeyin interface- Map<String,PropertyDescriptor>
 
 - 
containsValuepublic boolean containsValue(Object value) - Specified by:
- containsValuein interface- Map<String,PropertyDescriptor>
 
 - 
getpublic PropertyDescriptor get(Object key) - Specified by:
- getin interface- Map<String,PropertyDescriptor>
 
 - 
putpublic PropertyDescriptor put(String key, PropertyDescriptor value) - Specified by:
- putin interface- Map<String,PropertyDescriptor>
 
 - 
removepublic PropertyDescriptor remove(Object key) - Specified by:
- removein interface- Map<String,PropertyDescriptor>
 
 - 
putAllpublic void putAll(Map<? extends String,? extends PropertyDescriptor> m) - Specified by:
- putAllin interface- Map<String,PropertyDescriptor>
 
 - 
clearpublic void clear() - Specified by:
- clearin interface- Map<String,PropertyDescriptor>
 
 - 
keySetpublic Set<String> keySet() - Specified by:
- keySetin interface- Map<String,PropertyDescriptor>
 
 - 
valuespublic Collection<PropertyDescriptor> values() - Specified by:
- valuesin interface- Map<String,PropertyDescriptor>
 
 - 
entrySetpublic Set<Map.Entry<String,PropertyDescriptor>> entrySet() - Specified by:
- entrySetin interface- Map<String,PropertyDescriptor>
 
 
- 
 
-