Package gw.lang.reflect
Class PropertyNameMap<T extends CharSequence>
- java.lang.Object
-
- gw.lang.reflect.PropertyNameMap<T>
-
- All Implemented Interfaces:
Map<T,IPropertyInfo>
public class PropertyNameMap<T extends CharSequence> extends Object implements Map<T,IPropertyInfo>
-
-
Constructor Summary
Constructors Constructor Description PropertyNameMap()PropertyNameMap(int size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<T,IPropertyInfo>>entrySet()voidfreeze()IPropertyInfoget(Object key)booleanisEmpty()Set<T>keySet()IPropertyInfoput(T key, IPropertyInfo value)voidputAll(Map<? extends T,? extends IPropertyInfo> t)IPropertyInforemove(Object key)intsize()List<IPropertyInfo>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
freeze
public void freeze()
-
size
public int size()
- Specified by:
sizein interfaceMap<T extends CharSequence,IPropertyInfo>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceMap<T extends CharSequence,IPropertyInfo>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<T extends CharSequence,IPropertyInfo>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<T extends CharSequence,IPropertyInfo>
-
get
public IPropertyInfo get(Object key)
- Specified by:
getin interfaceMap<T extends CharSequence,IPropertyInfo>
-
put
public IPropertyInfo put(T key, IPropertyInfo value)
- Specified by:
putin interfaceMap<T extends CharSequence,IPropertyInfo>
-
remove
public IPropertyInfo remove(Object key)
- Specified by:
removein interfaceMap<T extends CharSequence,IPropertyInfo>
-
putAll
public void putAll(Map<? extends T,? extends IPropertyInfo> t)
- Specified by:
putAllin interfaceMap<T extends CharSequence,IPropertyInfo>
-
clear
public void clear()
- Specified by:
clearin interfaceMap<T extends CharSequence,IPropertyInfo>
-
keySet
public Set<T> keySet()
- Specified by:
keySetin interfaceMap<T extends CharSequence,IPropertyInfo>
-
values
public List<IPropertyInfo> values()
- Specified by:
valuesin interfaceMap<T extends CharSequence,IPropertyInfo>
-
entrySet
public Set<Map.Entry<T,IPropertyInfo>> entrySet()
- Specified by:
entrySetin interfaceMap<T extends CharSequence,IPropertyInfo>
-
-