public abstract class StringKeysMap<V>
extends java.util.AbstractMap<java.lang.String,V>
Modifier and Type | Class and Description |
---|---|
class |
StringKeysMap.EntryIter
The iterator class used to iterator the entries in this map.
|
Constructor and Description |
---|
StringKeysMap() |
Modifier and Type | Method and 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.
|
clear, clone, containsValue, entrySet, equals, hashCode, isEmpty, keySet, put, putAll, remove, size, toString, values
public boolean containsKey(java.lang.Object key)
public V get(java.lang.Object key)
protected abstract V getValue(java.lang.String key)
protected abstract java.util.Enumeration<java.lang.String> getKeys()
protected abstract void setValue(java.lang.String key, V value)
protected abstract void removeValue(java.lang.String key)
Copyright © 2005-2021 Potix Corporation. All Rights Reserved.