Package org.zkoss.web.servlet.xel
Class StringKeysMap<V>
- java.lang.Object
-
- java.util.AbstractMap<java.lang.String,V>
-
- org.zkoss.web.servlet.xel.StringKeysMap<V>
-
- All Implemented Interfaces:
java.util.Map<java.lang.String,V>
- Direct Known Subclasses:
AttributesMap
,ParameterMap
public abstract class StringKeysMap<V> extends java.util.AbstractMap<java.lang.String,V>
A skeletal implementation for Map to wrap something with enumeration of keys, which must be String.- Since:
- 3.0.0
- Author:
- tomyeh
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
StringKeysMap.EntryIter
The iterator class used to iterator the entries in this map.
-
Constructor Summary
Constructors Constructor Description StringKeysMap()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
containsKey(java.lang.Object key)
V
get(java.lang.Object key)
protected abstract java.util.Enumeration<java.lang.String>
getKeys()
Returns an enumeration of keys.protected abstract V
getValue(java.lang.String key)
Returns the value associated with the specified key.protected abstract void
removeValue(java.lang.String key)
Removes the specified key.protected abstract void
setValue(java.lang.String key, V value)
Sets the value associated with the specified key.-
Methods inherited from class java.util.AbstractMap
clear, clone, containsValue, entrySet, equals, hashCode, isEmpty, keySet, put, putAll, remove, size, toString, values
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(java.lang.Object key)
-
get
public V get(java.lang.Object key)
-
getValue
protected abstract V getValue(java.lang.String key)
Returns the value associated with the specified key.
-
getKeys
protected abstract java.util.Enumeration<java.lang.String> getKeys()
Returns an enumeration of keys.
-
setValue
protected abstract void setValue(java.lang.String key, V value)
Sets the value associated with the specified key.
-
removeValue
protected abstract void removeValue(java.lang.String key)
Removes the specified key.
-
-